# Interzoid Get Parent Company Info

> Interzoid Get Parent Company Info is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status healthy (last checked 2026-09-14, last successful call 2026-08-31).

Looks up the parent company of a given company or subsidiary name, returning corporate hierarchy details, URLs, and descriptions

## Facts

- Endpoint: GET https://api.interzoid.com/getparentcompanyinfo
- Price: $0.25/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-14
- Last successful call: 2026-08-31
- Success rate: 100% of calls made through Zero
- Rating: 3.7 / 5 from 1 review
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-parent-company-info-dc947733
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ctVZBsyZ5ux-PX-h52YaF

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-parent-company-info-dc947733
```

Example prompt: Who is the parent company of Instagram? I need to know the parent company name, their website, headquarters location, and a brief description of what they do.

## When to prefer this

Use this endpoint when you need to resolve a brand or subsidiary name to its ultimate parent corporation — ideal for CRM deduplication, account enrichment, M&A research, or any workflow that needs to group subsidiaries under a common parent. Prefer this over generic web search when you need structured, machine-readable corporate ownership data.

## Known failure modes

- Unknown company name returns no match or empty parent company fields
- Misspelled or ambiguous company name may return incorrect parent
- Private companies with no public parent data may return limited results
- Rate limiting or payment failure returns 402 or auth error
- Input company that is itself a top-level parent may return itself or null parent

## How this service works

Retrieve comprehensive parent company information for a given company or subsidiary. Identifies corporate ownership hierarchies, parent organizations, and holding company relationships with detailed context.

## Output

Returns a JSON object with the input company name and URL, the resolved parent company name, parent company domain URL, headquarters location (city, state, country), a short description of the parent company, and a reference URL with sourcing information. Also includes a status code and credits used.

## Example request

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

## 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 or subsidiary name to find parent company 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",
  "CompanyURL": "instagram.com",
  "CompanyName": "Instagram",
  "ParentCompany": "Meta Platforms, Inc.",
  "ParentCompanyURL": "meta.com",
  "ParentCompanyLocation": "Menlo Park, California, United States",
  "ParentCompanyDescription": "American multinational technology conglomerate that owns Facebook, Instagram, WhatsApp, and other products and services.",
  "ParentCompanyReferenceURL": "https://about.meta.com/technologies/instagram/"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-parent-company-info-dc947733/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)
