← oblique.markets · all endpoints

POST /api/v1/paid/rep-agi-prepaid-tokens — $1.00 per call

Use when an agent needs rep agi prepaid tokens. Returns Oblique prepaid access token for bounded HTTP-data services, using the Apify-compatible prepaid-token purchase shape; exactly $1 USD per token. $1.00.

Price$1.00 per call (1000000 atomic USDC, scheme exact)
Categorydata-services
Railsx402 · USDC on Base (eip155:8453) and Solana · MPP pathUSD on Tempo
Canonical URLhttps://api.oblique.markets/api/v1/paid/rep-agi-prepaid-tokens

Try it

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

Input schema

{
 "type": "object",
 "required": [
  "input"
 ],
 "additionalProperties": false,
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false,
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "required": [
      "amount",
      "currency"
     ],
     "additionalProperties": false,
     "properties": {
      "amount": {
       "type": "string",
       "pattern": "^1(?:\\.0{1,2})?$",
       "description": "Exactly 1 USD is supported by this $1 prepaid token SKU."
      },
      "currency": {
       "type": "string",
       "enum": [
        "usd"
       ]
      }
     }
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   }
  }
 }
}

Example input

{
 "body": {
  "input": {
   "type": "http",
   "method": "GET",
   "queryParams": {
    "amount": "1",
    "currency": "usd"
   }
  }
 }
}

Example output

{
 "token": "obq_pt_example_token",
 "remainingBalanceUsd": 1,
 "expiresAt": "2026-09-24T00:00:00.000Z",
 "issuer": "oblique.markets",
 "scope": "bounded-http-data",
 "redemption": "Use this Oblique prepaid access token with a supported Oblique HTTP-data service."
}

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