# Interzoid Get Facilities Profile API

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

Retrieves a company's facilities profile including manufacturing plants, factories, and headquarters locations by company name

## Facts

- Endpoint: GET https://api.interzoid.com/getfacilitiesprofile
- Price: $0.25/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-facilities-profile-api-7d3c5a63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f7UosVuXAilvpKN20SsIa

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-facilities-profile-api-7d3c5a63
```

Example prompt: What facilities and manufacturing locations does Tesla have, including their headquarters? Pull the full facilities profile for them.

## When to prefer this

Use this endpoint when you need to enrich a company record with its physical facility footprint — factories, assembly plants, gigafactories, distribution centers — along with headquarters. Ideal for supply chain research, competitive intelligence, CRM enrichment, or MDM pipelines where knowing where a company physically operates matters. Best for well-known public companies with documented facility presences.

## Known failure modes

- Unknown or misspelled company name returns empty or no facilities data
- Very small or private companies may have no facilities data on record
- Ambiguous company names may return data for the wrong company
- API returns Credits:0 when credits are exhausted
- Network timeout or HTTP 402 if payment not properly handled

## How this service works

Retrieve a profile of a company's corporate facilities including headquarters, regional offices, manufacturing sites, data centers, and other key locations.

## Output

Returns a JSON object with the company name, a comma-separated list of known facilities (e.g. assembly plants, gigafactories, warehouses) with their city/state locations, and the company's headquarters location. Also includes a status code and credits used.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "Apple Inc"
  }
 }
}
```

## 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": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Company name to retrieve facilities profile 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",
  "Facilities": "Fremont CA assembly, Sparks NV Gigafactory, Austin TX Gigafactory, Berlin Gigafactory, Shanghai Gigafactory",
  "CompanyName": "Tesla",
  "Headquarters": "Austin, Texas"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-facilities-profile-api-7d3c5a63/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)
