{
  "serviceId": "entity-registration",
  "displayName": "Entity Registration and Verification",
  "description": "Verify SAM.gov entity registrations: UEI, legal name, registration status, and expiration. POST /v1/entity with a {name} (or UEI) and get the matching records as one JSON object. Deterministic per record. Pay per request in USDC; no account, no API key.",
  "category": "government",
  "resourceUrl": "https://test.agent.pocket.network/v1/entity-registration",
  "priceUsd": "0.005000",
  "priceVersion": 1,
  "rails": [
    {
      "id": "base",
      "network": "eip155:84532",
      "chainId": 84532,
      "tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
      "tokenDecimals": 6,
      "payToAddress": "0xF732ea490c5766071785a2310523f7fA2CEbB829"
    }
  ],
  "protocols": [
    "rest"
  ],
  "inputSchema": {
    "type": "object",
    "description": "An entity to verify.",
    "properties": {
      "name": {
        "type": "string",
        "description": "Legal or DBA name to verify, e.g. Boeing."
      },
      "uei": {
        "type": "string",
        "description": "Optional UEI."
      }
    },
    "required": [
      "name"
    ]
  },
  "outputSchema": {
    "type": "object",
    "description": "For POST /v1/entity, a JSON object with the matching entity records (UEI, legal name, status, expiration). The exact shape is the service's own and is not pinned here; errors return a JSON object with an `error` field, and the GET routes return their own small JSON documents."
  },
  "methods": {
    "GET /v1/health": "read",
    "GET /v1/version": "read",
    "POST /v1/entity": "read"
  },
  "firstParty": true,
  "networks": [
    "eip155:84532"
  ],
  "serving": true,
  "page": "https://test.agent.pocket.network/services/entity-registration",
  "descriptor": "https://test.agent.pocket.network/services/entity-registration/descriptor.json"
}