Catalog/test-data-address

Test Data

Address fixture API

Generate a deterministic fake US-style postal address for test payloads.

Price$0.01per request
MethodGET
Route/v1/test-data/address
StatusLive
MIME typeapplication/json
Rate limit240/minute
CacheNo cache
test-dataaddressfixture
API URLhttps://x402.hexl.dev/v1/test-data/address
Integration docs
Example request
{
  "seed": "demo"
}
Example response
{
  "address": {
    "line1": "123 Market Street",
    "city": "Austin",
    "state": "TX"
  },
  "provider": "local-deterministic-test-data"
}
Input schema
{
  "type": "object",
  "properties": {
    "seed": {
      "type": "string"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}