Catalog/test-data-person

Test Data

Person fixture API

Generate a deterministic fake person with name, birthday, email, phone, and username.

Price$0.01per request
MethodGET
Route/v1/test-data/person
StatusLive
MIME typeapplication/json
Rate limit240/minute
CacheNo cache
test-datapersonnameprofile
API URLhttps://x402.hexl.dev/v1/test-data/person
Integration docs
Example request
{
  "seed": "demo"
}
Example response
{
  "person": {
    "fullName": "Avery Morgan",
    "email": "avery.morgan@example.test"
  },
  "provider": "local-deterministic-test-data"
}
Input schema
{
  "type": "object",
  "properties": {
    "seed": {
      "type": "string"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}