{
  "x402Version": 2,
  "id": 8725,
  "slug": "8725",
  "resource": "https://api.munition.io/v1/exa/search",
  "description": "Munition Exa Search: x402-paid neural web search for AI agents. Pay 0.01 USDC per query and get up to 25 ranked results (title, url, date, author, optional page text/highlights/summary) from Exa's semantic index. Supports categories (news, research paper, company, github, people…), domain include/exclude and date filters.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x54d6C2C08e10F1a1d3dA88dF513bbE9BCf1A4aFa",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0x54d6C2C08e10F1a1d3dA88dF513bbE9BCf1A4aFa",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0x54d6C2C08e10F1a1d3dA88dF513bbE9BCf1A4aFa",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "CawPXxATKM9iBPc2o6FRzu9LbvzZWcepD9akwZkbDyDo",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "iconUrl": "https://munition.io/logo.png",
        "input": {
          "body": {
            "numResults": 5,
            "query": "x402 payment protocol for AI agents",
            "type": "auto"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "meta": {
              "resultCount": 1,
              "searchedAt": "2026-09-09T00:00:00.000Z"
            },
            "query": "x402 payment protocol for AI agents",
            "results": [
              {
                "author": null,
                "publishedDate": "2025-05-06T00:00:00.000Z",
                "score": 0.21,
                "title": "x402 — HTTP-native payments",
                "url": "https://www.x402.org/"
              }
            ],
            "searchType": "neural"
          },
          "type": "json"
        },
        "serviceName": "Munition",
        "tags": [
          "search",
          "web",
          "research"
        ]
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "additionalProperties": false,
                "properties": {
                  "category": {
                    "enum": [
                      "company",
                      "research paper",
                      "news",
                      "pdf",
                      "github",
                      "tweet",
                      "personal site",
                      "linkedin profile",
                      "financial report",
                      "people"
                    ],
                    "type": "string"
                  },
                  "contents": {
                    "description": "Which page contents to include. Omit for metadata only.",
                    "properties": {
                      "highlights": {
                        "oneOf": [
                          {
                            "type": "boolean"
                          },
                          {
                            "properties": {
                              "highlightsPerUrl": {
                                "type": "integer"
                              },
                              "numSentences": {
                                "type": "integer"
                              }
                            },
                            "type": "object"
                          }
                        ]
                      },
                      "summary": {
                        "oneOf": [
                          {
                            "type": "boolean"
                          },
                          {
                            "properties": {
                              "query": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          }
                        ]
                      },
                      "text": {
                        "oneOf": [
                          {
                            "type": "boolean"
                          },
                          {
                            "properties": {
                              "maxCharacters": {
                                "type": "integer"
                              }
                            },
                            "type": "object"
                          }
                        ]
                      }
                    },
                    "type": "object"
                  },
                  "endPublishedDate": {
                    "format": "date-time",
                    "type": "string"
                  },
                  "excludeDomains": {
                    "items": {
                      "type": "string"
                    },
                    "maxItems": 50,
                    "type": "array"
                  },
                  "includeDomains": {
                    "items": {
                      "type": "string"
                    },
                    "maxItems": 50,
                    "type": "array"
                  },
                  "numResults": {
                    "default": 10,
                    "maximum": 25,
                    "minimum": 1,
                    "type": "integer"
                  },
                  "query": {
                    "description": "Natural-language search query.",
                    "maxLength": 2000,
                    "minLength": 1,
                    "type": "string"
                  },
                  "startPublishedDate": {
                    "format": "date-time",
                    "type": "string"
                  },
                  "type": {
                    "default": "auto",
                    "enum": [
                      "auto",
                      "neural",
                      "keyword",
                      "fast"
                    ],
                    "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",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "meta": {
                    "properties": {
                      "resultCount": {
                        "type": "integer"
                      },
                      "searchedAt": {
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "resultCount",
                      "searchedAt"
                    ],
                    "type": "object"
                  },
                  "query": {
                    "type": "string"
                  },
                  "results": {
                    "items": {
                      "properties": {
                        "author": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "highlights": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "publishedDate": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "score": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "summary": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "text": {
                          "description": "Page text when contents were requested.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "title": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "url": {
                          "format": "uri",
                          "type": "string"
                        }
                      },
                      "required": [
                        "url"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "searchType": {
                    "type": "string"
                  }
                },
                "required": [
                  "query",
                  "results",
                  "meta"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "api.munition.io",
  "lastUpdated": "2026-09-11T10:41:15.447Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-11T10:41:15.246Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "api.munition.io",
    "manifest_name": "api.munition.io",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}