# Oblique Markets MPP-Native Task Router

> Oblique Markets MPP-Native Task Router is a paid API for AI agents from api.oblique.markets, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Routes a natural-language task to a paid shortlist of the top three matching API providers, including prices, payment methods, MCP schemas, health metadata, and operator source attribution

## Facts

- Endpoint: POST https://api.oblique.markets/api/v1/paid/mpp-route
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-mpp-native-task-router-530eacf5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0D25pcIbPEge-7kyKL18t

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-mpp-native-task-router-530eacf5 -d '<json body>'
```

Example prompt: Find me the top three paid services that can summarize a PDF document — I want results in JSON, I'm on Base, and I don't want to pay more than $0.05 per call.

## When to prefer this

Choose this endpoint when an AI agent needs to dynamically discover and compare paid API providers for an arbitrary task at runtime, especially when operating within the x402/MPP micropayment ecosystem and needing structured MCP schema compatibility, health signals, and operator attribution rather than a static hardcoded integration.

## Known failure modes

- No matching providers found for the task description
- Price cap too low to match any available providers
- Unsupported preferred_chain value leads to empty result set
- Malformed or overly vague task string results in poor routing quality
- Service temporarily unavailable causing 402 or 5xx response
- Catalog snapshot stale — returned providers may have changed their pricing or availability

## How this service works

Use when an agent needs mpp route. Returns MPP-native catalog-first task router: paid top-three shortlist with prices, payment methods, MCP schemas, health metadata and operator source attribution. $0.01.

## Output

A ranked shortlist of the top three API providers matching the given task, each entry containing pricing, accepted payment methods, MCP-compatible schema definitions, health/uptime metadata, and operator source attribution — returned in the requested format (JSON, markdown, or text).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "task": {
   "type": "string",
   "description": "Natural-language task to route"
  },
  "price_cap": {
   "type": "number"
  },
  "constraints": {
   "type": "object"
  },
  "output_format": {
   "enum": [
    "json",
    "markdown",
    "text"
   ],
   "type": "string"
  },
  "preferred_chain": {
   "enum": [
    "base",
    "solana",
    "tempo"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "paid",
  "results": [
   {
    "name": "web_extract",
    "price": 0.03,
    "health": {
     "score": 0.98,
     "status": "healthy"
    },
    "source": {
     "catalog": "oblique-mcp",
     "operator": "Oblique Markets",
     "protocol": "mpp"
    },
    "mcp_schema": {
     "name": "web_extract",
     "inputSchema": {
      "type": "object",
      "required": [
       "url"
      ]
     }
    },
    "service_id": "oblique.web-extract",
    "endpoint_url": "https://api.oblique.markets/api/v1/paid/web-extract",
    "payment_methods": [
     "mpp:tempo",
     "x402:base"
    ]
   }
  ],
  "protocol": "mpp",
  "generated_at": "2026-08-21T12:00:00.000Z",
  "result_count": 3,
  "output_format": "json",
  "repeat_use_tag": "mpp-route",
  "request_origin": "mpp",
  "shortlist_price": "$0.01"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-mpp-native-task-router-530eacf5/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)
