# Interzoid Get Entity Type API

> Interzoid Get Entity Type API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Classifies a given text value as an entity type (e.g., Organization, Person, Location) using AI-powered analysis

## Facts

- Endpoint: GET https://api.interzoid.com/getentitytype
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-entity-type-api-b6d331ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GWbMMidPZafq6g2A78Vse

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 interzoid-get-entity-type-api-b6d331ec
```

Example prompt: Can you tell me what type of entity 'Acme Corporation' is — like whether it's an organization, a person, or something else?

## When to prefer this

Use this endpoint when you need to programmatically classify raw data values into entity types (person, organization, location, etc.) as part of a data enrichment, MDM, CRM deduplication, or data quality pipeline. Prefer this over generic NLP classifiers when you want a lightweight, pay-per-call API specifically tuned for data field classification.

## Known failure modes

- Missing required 'text' query parameter returns an error response
- Empty or ambiguous text may result in low-confidence or unexpected entity type classification
- API authentication or credit exhaustion may return non-success Code values
- Network timeout or service unavailability returns connection error

## How this service works

Determine the entity type of a data value - whether it represents a person name, company/organization, location, or other entity type.

## Output

Returns a JSON object with a Code field indicating success, a Credits field showing remaining usage, and an EntityType field with the classified entity category (e.g., 'Organization', 'Person', 'Location').

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "text": "Apple Inc."
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Data value to determine entity type for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "EntityType": "Organization"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-entity-type-api-b6d331ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
