Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

orchus_pay

Alias for orchus_fetch. Identical parameters and behavior.


When to Use

orchus_pay is provided as an ergonomic alias for intent clarity. When an AI model's plan is "pay for this resource", calling orchus_pay makes the intent explicit in tool-call logs.


Parameters

Identical to orchus_fetch.

ParameterTypeRequiredDescription
urlstringYesThe x402-gated URL to call
methodstringNoHTTP method: GET (default), POST, PUT
bodyobjectNoJSON request body (for POST/PUT endpoints)
headersobjectNoAdditional HTTP headers to include

Example

{
  "tool": "orchus_pay",
  "arguments": {
    "url": "https://api.coingecko.com/x402/price?coin_id=solana&vs_currency=usd"
  }
}

See orchus_fetch for full documentation.