# Interzoid Get Buying Signals API

> Interzoid Get Buying Signals 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).

Returns AI-generated buying signals for a target company, such as funding rounds, hiring expansions, and strategic announcements

## Facts

- Endpoint: GET https://api.interzoid.com/getbuyingsignals
- 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-buying-signals-api-7ad62dfc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EIwXySZe5s3lwiO7_Zajt

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-buying-signals-api-7ad62dfc
```

Example prompt: Pull buying signals for Anthropic — I want to know about any recent funding rounds, sales team expansion, or new partnerships that suggest they're in a buying mode.

## When to prefer this

Use this endpoint when an AI agent needs to enrich a B2B prospect or lead with real-time buying intent signals — such as funding events, hiring surges, or strategic announcements — to prioritize outreach or trigger sales workflows. Prefer this over generic web search when you need structured, sales-focused intelligence on a named company.

## Known failure modes

- Company name not found or too ambiguous — may return empty signals
- Invalid or missing 'lookup' query parameter — returns error response
- Insufficient credits — Credits field returns 0 and no signals returned
- Network timeout for obscure or hard-to-resolve company names
- Rate limiting if called too frequently in succession

## How this service works

Identify recent buying signals for a target company including funding events, leadership changes, expansion announcements, hiring trends, and other intent signals useful for sales targeting.

## Output

Returns a JSON object with a success code, credit balance, the resolved company name, and a natural-language summary of buying signals such as recent funding rounds, enterprise team expansions, and new partnership announcements.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "Anthropic"
  }
 },
 "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": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Target company name to surface buying signals 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",
  "Signals": "Recent Series E funding round, expansion of enterprise sales team, new partnerships announced",
  "CompanyName": "Anthropic"
 }
}
```

## More

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