# Receipts - Video Intelligence API > AI-powered video intelligence for short-form content. Identify products, debunk ads, fact-check claims in any TikTok, Instagram Reel, or YouTube Short. ## Overview Receipts is a pay-per-request API. No accounts, no API keys. Send a video URL, pay with USDC, get structured intelligence back. ## Endpoints - POST /analyze ($0.10): Full video content analysis: transcript, scenes, topics, sentiment, and key moments from any short-form video - POST /product-id ($0.25): Identify every product, brand, and item shown or mentioned in a video with prices and purchase links - POST /ad-debunk ($0.15): Evaluate advertising claims against evidence: true/misleading/false verdicts with sources and consumer recommendation - POST /verify ($0.15): Fact-check every claim in a video with confidence-rated verdicts, explanations, and overall credibility assessment ## How to Use All endpoints accept POST with JSON body: { "url": "" } ### Async flow All four paid endpoints are asynchronous: 1. POST to the endpoint with X-PAYMENT. Payment is verified and settled synchronously. 2. Response is 202 Accepted with { "job_id", "poll_url", "status": "processing", "estimated_completion_seconds" }. 3. GET /jobs/{job_id} (no payment required) to poll. Status is "processing" until the job finishes, then "complete" (with a 'result' field) or "failed" (with an 'error' field). 4. Jobs are retained for 1 hour after creation. ### Payment contract Payment settles when the job is accepted, not on completion. Failed jobs (status="failed" on polling) are not automatically refunded. Retry with a fresh request if a job fails. ### Payment You'll receive a 402 response with payment requirements. Two protocols supported: **x402 (Base/Solana USDC):** 1. Read payment requirements from the 402 response body 2. Sign a USDC payment on Base or Solana 3. Include signed proof in X-PAYMENT header 4. Resend the request **MPP (Tempo chain USDC):** 1. Read WWW-Authenticate header from the 402 response 2. Submit a TIP-20 payment credential on Tempo 3. Include in Authorization: Payment header 4. Resend the request ## Pricing | Endpoint | Price | |----------|-------| | /analyze | $0.10 | | /product-id | $0.25 | | /ad-debunk | $0.15 | | /verify | $0.15 | ## Discovery & Integration - OpenAPI spec: https://api.leoclaw.cc/openapi.json - x402 discovery: https://api.leoclaw.cc/.well-known/x402 - llms.txt (this file): https://api.leoclaw.cc/llms.txt - ai-plugin.json: https://api.leoclaw.cc/.well-known/ai-plugin.json - Landing page: https://api.leoclaw.cc/ - x402scan: https://www.x402scan.com/server/d9bdecb9-2966-4d14-86f6-b5af3cd446ae - Pyrimid catalog: vendorId 0xcdef72430d6bb7d1f0a7982838102be6 ## Networks - Base (EVM): USDC via x402 protocol - Solana (SVM): USDC via x402 protocol - Tempo: USDC/PathUSD via MPP (Machine Payments Protocol) ## Affiliate Program Agents earn 20% commission on referred payments via Pyrimid. Include X-AFFILIATE-ID header with your Pyrimid affiliate ID. ## Example ``` POST https://api.leoclaw.cc/analyze Content-Type: application/json X-PAYMENT: { "url": "https://www.tiktok.com/@user/video/1234567890" } ``` Returns structured JSON with transcript, topics, sentiment, scenes, and key moments.