Use when an agent wants to test a third-party endpoint for a 402 challenge, latency and re
Use when an agent wants to test a third-party endpoint for a 402 challenge, latency and response shape without paying it. Returns One bounded x402 endpoint request and payment-flow evaluation. $0.01.
10000 (raw units)
price
10
calls / 30d
3
unique payers
2026-09-14
updated
Provider
api.oblique.markets · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"target_url": "https://api.oblique.markets/api/v1/paid/time"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"failure_reason": null,
"latency_ms": 120,
"payment_accepted": false,
"payment_required": false,
"response_valid": true,
"schema_errors": [],
"status": 200,
"tested_at": "2026-01-01T00:00:00.000Z"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"body": {},
"headers": {
"type": "object"
},
"method": {
"type": "string"
},
"target_url": {
"type": "string"
},
"task_assertions": {
"type": "object"
}
},
"required": [
"target_url"
],
"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": {
"failure_reason": {
"type": "null"
},
"latency_ms": {
"type": "integer"
},
"payment_accepted": {
"type": "boolean"
},
"payment_required": {
"type": "boolean"
},
"response_valid": {
"type": "boolean"
},
"schema_errors": {
"type": "array"
},
"status": {
"type": "integer"
},
"tested_at": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/endpoint-task-evaluation" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.oblique.markets/api/v1/paid/endpoint-task-evaluation");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.oblique.markets/api/v1/paid/endpoint-task-evaluation")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/509.json, and this resource appears in /discovery/resources and /discovery/search.