Use when an agent needs compile policy
Use when an agent needs compile policy. Returns Compile a merchant payment policy across x402, MPP, AP2, and card rails from product, risk, authorization, latency, asset, and refund constraints. $0.02.
20000 (raw units)
price
7
calls / 30d
2
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": "20000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"human_authorization_required": true,
"max_latency_ms": 1,
"max_price_usdc": 1,
"product_type": "digital_retrieval",
"refund_capability": true,
"reversible": true,
"supported_assets": [
"example"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"authorization_policy": "Buyer authorization is required before settlement; enforce the stated per-call cap.",
"deny_conditions": [
"price exceeds max_price_usdc",
"required human authorization is unavailable",
"no supported settlement rail or asset",
"refund requirement cannot be met"
],
"policy_manifest": {
"max_latency_ms": 3000,
"product_type": "digital_retrieval",
"reversible": false,
"version": "1.0"
},
"receipt_schema": {
"required": [
"payment_id",
"rail",
"amount_usdc",
"status",
"settled_at"
],
"type": "object"
},
"recommended_rails": [
{
"rail": "x402",
"rationale": "Best fit for an automated digital retrieval with an immediate, bounded response.",
"role": "primary settlement"
},
{
"rail": "MPP",
"rationale": "Useful when the buyer ecosystem already speaks machine payment protocols.",
"role": "alternative settlement"
},
{
"rail": "card",
"rationale": "Provides broad coverage for buyers without a compatible crypto wallet.",
"role": "fallback settlement"
}
],
"refund_owner": "merchant",
"settlement_requirements": [
"exact amount authorization",
"idempotency key",
"machine-readable receipt"
],
"spending_cap_usdc": 0.02
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"human_authorization_required": {
"type": "boolean"
},
"max_latency_ms": {
"type": "number"
},
"max_price_usdc": {
"type": "number"
},
"product_type": {
"enum": [
"digital_retrieval",
"inference",
"reversible_action",
"physical_goods"
],
"type": "string"
},
"refund_capability": {
"type": "boolean"
},
"reversible": {
"type": "boolean"
},
"supported_assets": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"product_type",
"max_price_usdc",
"reversible",
"max_latency_ms",
"supported_assets",
"human_authorization_required",
"refund_capability"
],
"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": {
"authorization_policy": {
"type": "string"
},
"deny_conditions": {
"items": {
"type": "string"
},
"type": "array"
},
"policy_manifest": {
"properties": {
"max_latency_ms": {
"type": "integer"
},
"product_type": {
"type": "string"
},
"reversible": {
"type": "boolean"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"receipt_schema": {
"properties": {
"required": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"recommended_rails": {
"items": {
"properties": {
"rail": {
"type": "string"
},
"rationale": {
"type": "string"
},
"role": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"refund_owner": {
"type": "string"
},
"settlement_requirements": {
"items": {
"type": "string"
},
"type": "array"
},
"spending_cap_usdc": {
"type": "number"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/compile-policy" # -> 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/compile-policy");
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/compile-policy")
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/524.json, and this resource appears in /discovery/resources and /discovery/search.