# Interzoid Get Name Origin

> Interzoid Get Name Origin 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).

Determines the ethnic or cultural origin of an individual personal name using AI classification

## Facts

- Endpoint: GET https://api.interzoid.com/getnameorigin
- 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-name-origin-f11768da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L1ajJsjZrxplqQatQ4GOJ

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-name-origin-f11768da
```

Example prompt: What is the ethnic or cultural origin of the name 'Nakamura'? Use Interzoid to classify it.

## When to prefer this

Use this endpoint when you need to classify the ethnic or cultural origin of an individual's name, such as for demographic analysis, data enrichment of CRM/ERP records, targeted marketing segmentation, or MDM data quality projects. Prefer this over general NLP APIs when you specifically need name-origin classification rather than sentiment or entity extraction.

## Known failure modes

- Missing 'name' query parameter returns an error response
- Invalid or unrecognized name may return a generic or empty origin
- Insufficient credits returns a payment or quota error
- Network timeout for very long name strings

## How this service works

Determine the likely cultural or geographic origin of an individual name. Useful for demographic analysis and internationalization efforts.

## Output

Returns a JSON object with a Code field indicating success, an Origin field containing the detected ethnic/cultural origin (e.g. 'Japanese', 'German', 'Spanish'), and a Credits field showing remaining API credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "name": "Nakamura"
  }
 },
 "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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Individual name to determine origin 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",
  "Origin": "Japanese",
  "Credits": "0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-name-origin-f11768da/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)
