mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Exa /search endpoint

Exa /search endpoint

Do you run api.aidress.ai? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
7000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-14
updated

Provider

api.aidress.ai · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x6d6E695b09861467c7d462f5AAF31cF3540B9192",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "7000",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "12Ec2cJmfR1C9uwejzxcuMhUgEC7wDrLgm1wBvvR5w9E",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "7000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "agentkit": {
    "_options": {
      "mode": {
        "type": "free-trial",
        "uses": 100
      },
      "network": "eip155:480",
      "statement": "Verify your agent is backed by a real human to access Exa"
    },
    "info": {
      "domain": "api.exa.ai",
      "issuedAt": "2026-09-14T18:44:18.266Z",
      "nonce": "81791c475e183bdc6398a11a59147233",
      "resources": [
        "https://api.exa.ai/search"
      ],
      "statement": "Verify your agent is backed by a real human to access Exa",
      "uri": "https://api.exa.ai/search",
      "version": "1"
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "address": {
          "type": "string"
        },
        "chainId": {
          "type": "string"
        },
        "domain": {
          "type": "string"
        },
        "expirationTime": {
          "format": "date-time",
          "type": "string"
        },
        "issuedAt": {
          "format": "date-time",
          "type": "string"
        },
        "nonce": {
          "type": "string"
        },
        "notBefore": {
          "format": "date-time",
          "type": "string"
        },
        "requestId": {
          "type": "string"
        },
        "resources": {
          "items": {
            "format": "uri",
            "type": "string"
          },
          "type": "array"
        },
        "signature": {
          "type": "string"
        },
        "statement": {
          "type": "string"
        },
        "type": {
          "type": "string"
        },
        "uri": {
          "format": "uri",
          "type": "string"
        },
        "version": {
          "type": "string"
        }
      },
      "required": [
        "domain",
        "address",
        "uri",
        "version",
        "chainId",
        "type",
        "nonce",
        "issuedAt",
        "signature"
      ],
      "type": "object"
    },
    "supportedChains": [
      {
        "chainId": "eip155:480",
        "type": "eip191"
      },
      {
        "chainId": "eip155:480",
        "type": "eip1271"
      }
    ]
  },
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "numResults": 10,
          "query": "example search query",
          "type": "auto"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "results": [
            {
              "score": 0.99,
              "title": "Example",
              "url": "https://example.com"
            }
          ]
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "contents": {
                  "description": "Content fields to include: text, highlights, summary",
                  "type": "object"
                },
                "numResults": {
                  "description": "Number of results to return (max 10 for x402)",
                  "type": "number"
                },
                "query": {
                  "description": "Search query",
                  "type": "string"
                },
                "type": {
                  "description": "Search type: auto, keyword, neural, deep-lite, deep, deep-reasoning",
                  "type": "string"
                }
              },
              "required": [
                "query"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "bodyType",
            "body",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.aidress.ai/pay/agent_exa_ai"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.aidress.ai/pay/agent_exa_ai");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.aidress.ai/pay/agent_exa_ai")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/594.json, and this resource appears in /discovery/resources and /discovery/search.