TheDocumentation Index
Fetch the complete documentation index at: https://hypha-docs.plinqx.app/llms.txt
Use this file to discover all available pages before exploring further.
tools/call endpoint executes a tool with provided arguments and returns the result.
Endpoint
Authentication
Bearer token with your Plinqx API key. Format:
Bearer plinqx_xxxxxxxxxxxxxxxxxxxxYour Plinqx API key
Path Parameters
The name of the tool to execute (as returned by
tools/list)Request Body
Tool input parameters matching the tool’s
inputSchemaRequest Example
Response
Success Response
Array of content items (typically one item with the result)
Whether the tool returned an error (false for success)
Content Item
Content type: “text” for text results, “image” for images, etc.
Text content of the result
Response Example
Response Headers
Cache status: “HIT”, “MISS”, or “BYPASS”
Time-to-live for cached response (seconds)
“true” if response was served from idempotency cache
Error Responses
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
429 Too Many Requests
Idempotency
Include an idempotency key to ensure requests are only processed once:Unique key for idempotent requests. Duplicate requests with the same key return cached response.
Idempotency keys are valid for 24 hours. Requests with the same key within 24 hours return the cached response.
Caching
Tool responses can be cached:- Cache Headers: Check
X-Cache-Statusheader - Cache Bypass: Include
X-Cache-Bypass: trueheader or?_cache=falsequery param - TTL: Cache TTL shown in
X-Cache-TTLheader
Next Steps
List Tools
Discover available tools
REST API
Explore REST API endpoints