/contentsFetch the readable text of one page you already have the URL for — Exa crawls it, strips the chrome and returns the content with the title. Cheapest way to turn a link into text an agent can reason over.
{
"properties": {
"ids": {
"description": "Alternative to urls: one Exa document id from an earlier search result.",
"items": {
"type": "string"
},
"maxItems": 1,
"minItems": 1,
"type": "array"
},
"text": {
"default": true,
"description": "Return the full page text. Included in this price; highlights and summary are charged extra by Exa and are not offered here.",
"type": "boolean"
},
"urls": {
"description": "Exactly one URL. Exa charges per URL, and this price covers one; a second URL doubles what the provider asks and the call is refused before payment.",
"example": [
"https://x402.org"
],
"items": {
"format": "uri",
"type": "string"
},
"maxItems": 1,
"minItems": 1,
"type": "array"
}
},
"required": [
"urls"
],
"type": "object"
}{
"properties": {
"requestId": {
"type": "string"
},
"results": {
"items": {
"properties": {
"id": {
"type": "string"
},
"text": {
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"format": "uri",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}{
"text": true,
"urls": [
"https://x402.org"
]
}{
"results": [
{
"text": "Page content...",
"title": "Example",
"url": "https://example.com"
}
]
}