Skip to main content
The check_endpoint_schema tool inspects an endpoint to learn its price, supported methods, input/output schema, and auth mode without making a payment. Equivalent CLI command: npx agentcash check <url>

Parameters

url
string
required
The endpoint URL to check.
method
string
Specific HTTP method to probe. If omitted, AgentCash probes multiple methods and checks the OpenAPI spec.
headers
string[]
Additional headers to include. Each entry must use Name: value format.

Response

price
string
Cost per request in USDC.
methods
string[]
Supported HTTP methods (GET, POST, etc.).
inputSchema
object
Expected request body format (JSON schema).
outputSchema
object
Response body format (JSON schema).
authType
string
Authentication mode: x402, siwx, mpp, or none.

Behavior

  1. Sends a probe request to the endpoint
  2. Reads the 402 Payment Required response for pricing and auth details
  3. Fetches the OpenAPI spec (if available) for schema information
  4. Probes multiple HTTP methods in parallel to determine which are supported
  5. Returns all metadata without making a payment

Example

Ask your agent:
Check the pricing and schema for https://stableenrich.dev/api/company/lookup using AgentCash.