TheDocumentation Index
Fetch the complete documentation index at: https://agentcash.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
search tool finds paid API services that match a natural-language query. It returns ranked origins along with endpoint details and pricing, so you can call the best match immediately via fetch.
Equivalent CLI command: npx agentcash search <query>
When to use
Usesearch when you don’t already know which origin to call. If the task clearly maps to a registered origin (people research → StableEnrich, image generation → StableStudio, social data → StableSocial, and so on), skip search and call discover_api_endpoints on that origin directly.
search is for discovering capabilities outside the registered origins.
Parameters
Natural-language description of what you need. Examples:
"send physical mail", "generate music", "flight prices", "company financials".Response
The original query, echoed back.
Ranked origins. The top result’s
endpoint includes the full input/output schema so it can be called without an extra check_endpoint_schema round-trip.Behavior
- Sends the query to the AgentCash search index
- Returns a ranked list of origins and their most relevant endpoints
- The top result is pre-loaded with schema details so you can go straight to
fetch
Example
Ask your agent:Use AgentCash to search for an API that can send a physical postcard.The agent calls
search, picks the best matching origin, and then calls fetch on the endpoint it returned.