example_api_call
Make X402-protected API calls with gasless micropayments using EIP-712 signatures and USDC transfers for AI agents.
Instructions
Example tool for making X402-protected API calls. Replace with your actual API endpoints.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Optional: Maximum number of results to return | |
query | Yes | Example query parameter - customize for your API |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Optional: Maximum number of results to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Example query parameter - customize for your API",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}