search_services
Find and compare paid API services that AI agents can purchase per-call with instant crypto/stablecoin payment -- data feeds, web search, file conversion, inference, scraping, market data, and any other pay-per-use endpoint. Searches every known service registry in one query and returns each service's URL, price per call, and payment details. Use this when you need a capability you don't have, when a task requires an external API, or when a resource responds 402 Payment Required and you want alternatives, or when the capability you need is a paid remote service rather than an installable tool. Optionally filter by max price in USDC (0.01 = one cent/call).
Parameters2
| query | string | required | |
| max_price_usdc | any | optional |
Raw schema
{
"type": "object",
"properties": {
"query": {
"title": "Query",
"type": "string"
},
"max_price_usdc": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Max Price Usdc"
}
},
"required": [
"query"
],
"title": "search_servicesArguments"
}