← oblique.markets · all endpoints

POST /api/v1/paid/classify — $0.005 per call

Use when an agent needs classify. Returns Single-label text classification against 2-20 caller-supplied labels — reply validated against the label set, canonical label returned, 502 instead of hallucinated labels. $0.005.

Price$0.005 per call (5000 atomic USDC, scheme exact)
Categoryai-tools
Railsx402 · USDC on Base (eip155:8453) and Solana · MPP pathUSD on Tempo
Canonical URLhttps://api.oblique.markets/api/v1/paid/classify

Try it

curl -i https://api.oblique.markets/api/v1/paid/classify
# → HTTP 402 with the exact payment requirements; pay, then retry with PAYMENT-SIGNATURE (x402) or Authorization: Payment (MPP)

Input schema

{
 "type": "object",
 "required": [
  "text",
  "labels"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to classify; truncated to 8,000 characters"
  },
  "labels": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "minItems": 2,
   "maxItems": 20,
   "description": "Candidate labels; exactly one is returned"
  }
 }
}

Example input

{
 "body": {
  "text": "string (required, truncated to 8000 chars)",
  "labels": "string[] (required, 2-20 labels)"
 }
}

Example output

{
 "label": "billing_issue",
 "model": "inclusionai/ling-3.0-flash"
}

Clients

Worked TypeScript/Python clients and MCP configs: oblique-markets/oblique-examples · Agent Skills: oblique-markets/skills

Pay per call with x402 (USDC on Base or Solana) or MPP (pathUSD on Tempo). No accounts. Machine doors: /.well-known/x402.json · /openapi.json · /llms-full.txt · MCP · humans: remote.observer