# Jintel GraphQL API

> Jintel GraphQL API is a paid API for AI agents from api.jintel.ai, paid per call via x402, $0.015/call, status down (last checked 2026-09-15).

Executes GraphQL queries and mutations against the Jintel intelligence data platform

## Facts

- Endpoint: POST https://api.jintel.ai/api/graphql
- Price: $0.015/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-jintel-ai-7813b0c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vsdT_aAV9rY4byTQ56h8t

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 api-jintel-ai-7813b0c5 -d '<json body>'
```

Example prompt: Run a GraphQL query against Jintel to fetch intelligence data — use the query `{ companies { id name industry } }` and return the results.

## When to prefer this

Use this endpoint when you need to query the Jintel intelligence platform's data using GraphQL — particularly when you need flexible, schema-driven data retrieval with custom field selection. Prefer this over REST alternatives when you want to specify exactly which fields to return or need to query nested relationships in a single request.

## Known failure modes

- Invalid GraphQL query syntax returns a 400 error with parsing details
- Unauthorized access returns a 402 payment required if x402 payment not processed
- Unknown field or type in query returns GraphQL errors array in response
- Missing required query field returns validation error
- Network timeout for complex queries returns 504 or connection error

## How this service works

Jintel GraphQL query

## Output

Returns a standard GraphQL response object containing a `data` field with the requested records and an optional `errors` array if any query issues occurred.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "GraphQL query document"
  },
  "variables": {
   "type": "object",
   "description": "Query variables (optional)"
  },
  "operationName": {
   "type": "string",
   "description": "Operation name (optional)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-jintel-ai-7813b0c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.jintel.ai](https://www.zero.xyz/host/api.jintel.ai/llms.txt)
