# Datamancer Entity Lookup

> Datamancer Entity Lookup is a paid API for AI agents from agents.datamancer.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves structured data for a specific named entity (e.g. a business or legal entity) by its unique entity ID

## Facts

- Endpoint: GET https://agents.datamancer.io/api/v1/paid/entity
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datamancer-entity-lookup-01fb74ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uMJbfVuNV4C0JDHh1T9db

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability datamancer-entity-lookup-01fb74ee
```

Example prompt: Can you look up the entity details for ent:US-FL:L19000228065 on Datamancer and tell me what you find about that business?

## When to prefer this

Use this endpoint when you have a specific Datamancer entity ID (in ent:COUNTRY-STATE:ID format) and need to retrieve structured entity data for that exact record. Prefer this over general business search endpoints when you already know the entity's unique identifier and want a precise, paid-quality data lookup from Datamancer's curated data systems.

## Known failure modes

- Invalid or malformed entity ID returns an error or empty result
- Entity ID not found in the database returns a not-found response
- Missing required 'id' query parameter causes a validation error
- Payment failure (x402) if USDC payment is not correctly provided
- Rate limiting or access errors if the payment header is invalid

## How this service works

Datamancer agents API. Public-records warehouse.

## Output

A JSON object with ok:true and structured entity data fields corresponding to the requested entity ID, including registration details and other available metadata for that business or legal entity.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Entity id, e.g. ent:US-FL:L19000228065"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tier": "paid",
  "entity": {
   "id": "ent:US-FL:L19000228065",
   "name": "LIVE BY 5 LLC",
   "status": "active",
   "officers": [
    {
     "name": "example officer",
     "role": "MGR"
    }
   ],
   "addresses": [
    {
     "city": "example city"
    }
   ],
   "filing_id": "L19000228065",
   "provenance": {
    "source_id": "sunbiz_fl_corp",
    "source_name": "Florida Division of Corporations (Sunbiz)"
   },
   "entity_type": "Florida Limited Liability Co.",
   "object_type": "entity",
   "jurisdiction": "US-FL"
  },
  "product": "entity_card",
  "disclaimer": "Public-record derived. May be incomplete or stale."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datamancer-entity-lookup-01fb74ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.datamancer.io](https://www.zero.xyz/host/agents.datamancer.io/llms.txt)
