Catalog/test-data-profile

Test Data

Fake profile API

Generate a deterministic fake person profile for testing and demos.

Price$0.01per request
MethodGET
Route/v1/test-data/profile
StatusLive
MIME typeapplication/json
Rate limit180/minute
CacheNo cache
test-dataprofilemock
API URLhttps://x402.hexl.dev/v1/test-data/profile
Integration docs
Example request
{
  "seed": "demo-user"
}
Example response
{
  "seed": "demo-user",
  "profile": {
    "fullName": "Avery Morgan",
    "email": "avery.morgan@example.test",
    "birthday": "1992-04-18"
  },
  "provider": "local-deterministic-test-data"
}
Input schema
{
  "type": "object",
  "properties": {
    "seed": {
      "type": "string",
      "examples": [
        "demo-user"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "seed",
    "profile",
    "provider"
  ],
  "properties": {
    "seed": {
      "type": "string"
    },
    "profile": {
      "type": "object",
      "additionalProperties": true
    },
    "provider": {
      "type": "string"
    }
  }
}