# Interzoid Get Executive Profile API

> Interzoid Get Executive 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-15).

Looks up a company executive's name, title, LinkedIn URL, and biography URL by company name and executive title

## Facts

- Endpoint: GET https://api.interzoid.com/getexecutiveprofile
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-executive-profile-api-d3247e12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A_jsoUveAOMBAaaeircvu

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-executive-profile-api-d3247e12
```

Example prompt: Who is the CEO of Coinbase? Can you pull their LinkedIn and biography URL using Interzoid's executive profile lookup?

## When to prefer this

Use this endpoint when you need to identify or enrich data about a specific corporate executive by role (e.g. CEO, CTO, CFO) at a named company, especially when you need their LinkedIn URL or biography URL. Prefer this over generic web search when you want structured, machine-readable executive profile data suitable for CRM enrichment, lead generation, or corporate intelligence workflows.

## Known failure modes

- Company or executive title not found — returns non-Success Code
- Ambiguous company name yields unexpected results
- Executive title not recognized or formatted incorrectly
- API payment failure (x402 USDC payment not processed)
- Rate limiting or quota exhaustion

## How this service works

Retrieve executive profile information for a company, including leadership details, roles, and professional background.

## Output

Returns a JSON object with the executive's full name, title, company name, company URL, LinkedIn profile URL, and a biography URL, along with a success/failure status code and credits used.

## Example request

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

## 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 and executive title to look up (e.g. 'Coinbase CEO')"
      }
     }
    }
   },
   "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": "coinbase.com",
  "CompanyName": "Coinbase",
  "LinkedInURL": "https://www.linkedin.com/in/barmstrong/",
  "BiographyURL": "https://www.coinbase.com/about",
  "ExecutiveName": "Brian Armstrong",
  "ExecutiveTitle": "CEO and Co-founder"
 }
}
```

## More

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