# Interzoid Get Organization Standard

> Interzoid Get Organization Standard 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).

Standardizes a messy or variant organization/company name into its canonical, clean form using AI-powered matching

## Facts

- Endpoint: GET https://api.interzoid.com/getorgstandard
- 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-organization-standard-c4ac8579
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LoXDcdn4w20Kz-00p5iQc

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-organization-standard-c4ac8579
```

Example prompt: I have a messy company name 'Gen'l Electric Corp.' in my CRM — can you use Interzoid to get the standardized canonical version of that organization name so it matches consistently across my dataset?

## When to prefer this

Use this endpoint when you need to normalize or canonicalize a single organization/company name — ideal for deduplicating CRM records, MDM pipelines, or analytics where inconsistent business name variants (abbreviations, misspellings, legal suffixes) need to be resolved to one standard form. Prefer this over general-purpose string matching when you specifically need a recognized canonical organization name output.

## Known failure modes

- Invalid or missing organization name input returns error Code
- Unrecognized or very obscure organization names may return a best-guess or empty Standard
- Expired or invalid API key returns authorization error
- Insufficient credits returns payment/credits error
- Network timeout on slow responses

## How this service works

Standardize an organization name to a consistent, canonical representation. Normalizes abbreviations, suffixes, and formatting (e.g. 'b.o.a.' -> 'Bank of America').

## Output

Returns a JSON object with a 'Code' field indicating success or failure, a 'Standard' field containing the canonical standardized organization name (e.g. 'General Electric'), and a 'Credits' field showing remaining API credits.

## 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": [
      "org"
     ],
     "properties": {
      "org": {
       "type": "string",
       "description": "Organization name to standardize"
      }
     }
    }
   },
   "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",
  "Standard": "General Electric"
 }
}
```

## More

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