# Delx Agent Commerce — full agent reference Delx sells deterministic, pay-per-result media and structured utility APIs to autonomous agents. There is no buyer account, API key, subscription, or invoice. Make the request once, read the HTTP 402 requirements, sign the exact USDC payment on Base, and retry the same request with `PAYMENT-SIGNATURE`. ## Products ### AI image generation - Endpoint: `POST https://api.delx.ai/api/v1/x402/image` - Price: `0.01 USDC` on Base - Input: `{"aspect_ratio": "1:1 | 16:9 | 9:16", "prompt": "string", "quality_profile": "balanced"}` - Output: Durable WebP URL, dimensions, SHA-256 and generation receipt. ### Text-to-speech - Endpoint: `POST https://api.delx.ai/api/v1/x402/speech` - Price: `0.001 USDC` on Base - Input: `{"speed": "0.5-2.0", "text": "string, 1-500 characters", "voice": "optional"}` - Output: Durable WAV URL, voice metadata, SHA-256 and generation receipt. ### Video draft generation - Endpoint: `POST https://api.delx.ai/api/v1/x402/video-draft` - Price: `0.03 USDC` on Base - Input: `{"aspect_ratio": "16:9 | 9:16 | 1:1", "prompt": "string"}` - Output: Four-second MP4 URL with audio, metadata, SHA-256 and generation receipt. ### API health report - Endpoint: `POST https://api.delx.ai/api/v1/x402/api-health-report` - Price: `0.001 USDC` on Base - Input: `{"timeout": "1-15 seconds", "url": "HTTPS endpoint"}` - Output: Structured status, latency, redirect, content-type and JSON-validity result. ### OpenAPI summary - Endpoint: `POST https://api.delx.ai/api/v1/x402/openapi-summary` - Price: `0.001 USDC` on Base - Input: `{"timeout": "1-15 seconds", "url": "HTTPS origin or OpenAPI JSON URL"}` - Output: Structured API title, version, path counts, tags and authentication hints. ### x402 resource summary - Endpoint: `POST https://api.delx.ai/api/v1/x402/resource-summary` - Price: `0.001 USDC` on Base - Input: `{"timeout": "1-15 seconds", "url": "HTTPS x402 server origin"}` - Output: Structured x402 resource count, payment networks and canonical paths. ## Selection guidance - Choose image for a fast, self-contained first purchase. - Choose speech for short narration, accessibility audio, or an agent voice. - Choose video draft for a low-cost four-second concept before buying a larger render elsewhere. - Choose an entry-price utility for a $0.001 API health, OpenAPI, or x402 discovery result. - Inputs are validated before payment. - A settled payment is not counted as delivered revenue until the artifact is durable and hashed. - A paid post-settlement failure enters an operator-visible full-refund queue. ## Machine contracts - x402 catalog: https://api.delx.ai/.well-known/x402 - Paid OpenAPI: https://api.delx.ai/openapi.x402.json - Full OpenAPI: https://api.delx.ai/openapi.json - Agent toolkit: https://api.delx.ai/agent-toolkit.json - Installable skill: https://api.delx.ai/skill.md - A2A agent card: https://api.delx.ai/.well-known/agent-card.json - MCP server card: https://api.delx.ai/.well-known/mcp/server.json - Runtime reliability: https://api.delx.ai/api/v1/reliability ## Buyer example ```bash npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/image \ -m POST \ -b '{"prompt":"A friendly robot shipping reliable software","aspect_ratio":"1:1"}' \ --payment-protocol x402 \ --payment-network base \ --max-amount 0.01 \ -y ``` Always pin `--max-amount` to the published price. Verify the returned SHA-256 after downloading the artifact. Support: support@delx.ai.