← oblique.markets · all endpoints

POST /api/v1/paid/web-search — $0.01 per call

Use when an agent needs web search. Returns Bounded web search for agents using the public Wikimedia Wikipedia search index: ranked title, URL and snippet results with offset/limit paging and a total count. $0.01.

Price$0.01 per call (10000 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/web-search

Try it

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

Input schema

{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "minLength": 1,
   "maxLength": 512
  },
  "limit": {
   "type": "integer",
   "minimum": 1,
   "maximum": 10,
   "default": 5
  },
  "offset": {
   "type": "integer",
   "minimum": 0,
   "maximum": 1000,
   "default": 0
  }
 },
 "additionalProperties": false
}

Example output

{
 "results": [
  {
   "title": "Ada Lovelace",
   "url": "https://en.wikipedia.org/wiki/Ada_Lovelace",
   "snippet": "English mathematician and writer."
  }
 ],
 "query": "Ada Lovelace",
 "metadata": {
  "offset": 0,
  "limit": 1,
  "returned": 1,
  "total": 1
 },
 "source": "Wikimedia Wikipedia public search",
 "bounded": true
}

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