# Oblique Markets Prepaid Access Token Purchase

> Oblique Markets Prepaid Access Token Purchase is a paid API for AI agents from api.oblique.markets, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Purchases a $1 USD prepaid access token for bounded HTTP-data services on the Oblique Markets platform using an Apify-compatible token purchase shape

## Facts

- Endpoint: POST https://api.oblique.markets/api/v1/paid/rep-agi-prepaid-tokens
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-prepaid-access-token-purchase-b05fcde3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7Y6c00ZSYqwuHOWfLBhSq

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability oblique-markets-prepaid-access-token-purchase-b05fcde3 -d '<json body>'
```

Example prompt: Buy me a $1 USD prepaid access token on Oblique Markets using a GET request shape so I can call their bounded HTTP data services.

## When to prefer this

Use this endpoint when you need to prepay for access to Oblique Markets' bounded HTTP-data services and want an Apify-compatible token shape. This is the entry point before calling any paid Oblique Markets data endpoint (wallet analysis, crypto prices, URL extraction, etc.). Prefer this when you need a single $1 token for a discrete data call rather than a subscription or bulk credit purchase.

## Known failure modes

- Payment failure if USDC balance is insufficient — returns payment error
- Invalid amount parameter if value other than 1 USD is supplied — only $1 USD is supported
- Invalid currency if anything other than 'usd' is passed — returns validation error
- Unsupported HTTP method if POST/PUT/PATCH is used as the inner method — only GET, HEAD, DELETE are allowed
- Token issuance failure if the platform is temporarily unavailable — returns 5xx error

## How this service works

Oblique prepaid access token for bounded HTTP-data services, using the Apify-compatible prepaid-token purchase shape; exactly $1 USD per token

## Output

Returns a prepaid access token credential (Apify-compatible shape) granting one bounded HTTP-data service call on the Oblique Markets platform, valid for the specific data service being accessed, priced at exactly $1 USD per token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "amount",
      "currency"
     ],
     "properties": {
      "amount": {
       "type": "string",
       "description": "Exactly 1 USD is supported by this $1 prepaid token SKU."
      },
      "currency": {
       "enum": [
        "usd"
       ],
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-prepaid-access-token-purchase-b05fcde3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
