Private BetaFound a bug or have feedback? Share it →

Mock Data

Realistic placeholder data for testing — posts, users, and comments. Useful for prototyping and demos. Free, no key required.

Healthy
Developer ToolsNo upstream key required

Base URL

https://api.apiclearinghouse.com/v1/call/mock-data

Authenticate with X-Api-Key: chk_live_... header.

GET/posts

Parameters

NameTypeRequiredDescription
idnumberrequiredPost ID (1–100)

Example Request

curl -s "https://api.apiclearinghouse.com/v1/call/mock-data/posts?id={id}" \
  -H "X-Api-Key: YOUR_API_KEY"

Example Response

{
  "status": "success",
  "data": {
    "id": "abc123",
    "body": "example",
    "title": "example",
    "userId": "example"
  }
}
GET/users

Parameters

NameTypeRequiredDescription
idnumberrequiredUser ID (1–10)

Example Request

curl -s "https://api.apiclearinghouse.com/v1/call/mock-data/users?id={id}" \
  -H "X-Api-Key: YOUR_API_KEY"

Example Response

{
  "status": "success",
  "data": {
    "id": "abc123",
    "city": "example",
    "name": "example",
    "email": "example",
    "phone": "example"
  }
}
GET/comments

Example Request

curl -s "https://api.apiclearinghouse.com/v1/call/mock-data/comments" \
  -H "X-Api-Key: YOUR_API_KEY"

Example Response

{
  "status": "success",
  "data": {
    "comments": "example"
  }
}

Try it live

No setup required. Sign in and run Mock Data directly from your browser.

Open in Explorer →

Rate Limits

Free10/min
Pro100/min
Elite500/min

Monthly limits also apply per plan.

Authentication

Pass your API key in the request header:

X-Api-Key: chk_live_...
Join the beta
← Back to catalog
mock-data API Documentation — API Clearinghouse