ToolAssay

Use when an agent wants a chat completion paid per call with no API key, on Base

Use when an agent wants a chat completion paid per call with no API key, on Base or Solana. Returns Chat completion from one of six catalogued models in the standard messages request shape, with token usage and the settled charge. $1.00 maximum on Base; $0.01 fixed on Solana. Rail: $0.01 fixed on Base.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
19 msmedian answer time
$0.01listed price per call
$0.01price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://api.oblique.markets/api/v1/paid/inference

CategoryMarket data
Provider hostapi.oblique.markets
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact, upto
Self-reported calls, 30 days13 from 3 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 19 ms

Example input (from the provider)

{
  "body": {
    "messages": [
      {
        "content": "Say hello in five words.",
        "role": "user"
      }
    ]
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "messages": {
              "description": "Chat messages array",
              "items": {
                "type": "object"
              },
              "type": "array"
            },
            "model": {
              "description": "Model ID (see /api/v1/models)",
              "type": "string"
            },
            "stream": {
              "description": "Enable SSE streaming",
              "type": "boolean"
            }
          },
          "required": [
            "messages"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "choices": {
          "items": {
            "properties": {
              "finish_reason": {
                "type": "string"
              },
              "index": {
                "type": "integer"
              },
              "message": {
                "properties": {
                  "content": {
                    "type": "string"
                  },
                  "role": {
                    "type": "string"
                  }
                },
                "type": "object"
              }
            },
            "type": "object"
          },
          "type": "array"
        },
        "created": {
          "type": "integer"
        },
        "id": {
          "type": "string"
        },
        "model": {
          "type": "string"
        },
        "object": {
          "type": "string"
        },
        "payment_info": {
          "properties": {
            "authorized_max_usdc": {
              "type": "number"
            },
            "charged_usdc": {
              "type": "number"
            },
            "message": {
              "type": "string"
            },
            "payment_scheme": {
              "type": "string"
            },
            "usage_cost_estimate_usd": {
              "type": "number"
            }
          },
          "type": "object"
        },
        "usage": {
          "properties": {
            "completion_tokens": {
              "type": "integer"
            },
            "cost": {
              "type": "number"
            },
            "prompt_tokens": {
              "type": "integer"
            },
            "total_tokens": {
              "type": "integer"
            }
          },
          "type": "object"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON