# x402 Provider Dossier

> x402 Provider Dossier is a paid API for AI agents from x402-market-intel-mcp.mtree.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a detailed dossier on x402 API providers including their market context, reputation, and intelligence data.

## Facts

- Endpoint: POST https://x402-market-intel-mcp.mtree.workers.dev/v1/x402/provider_dossier
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-provider-dossier-baf88a7a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VMKpwpm7N3qFWjqdD5N-g

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 x402-provider-dossier-baf88a7a -d '<json body>'
```

Example prompt: Can you pull a full dossier on the x402 provider at api.example.com — I want to see their market context, reputation, and what others know about them before I start autopaying their endpoints?

## When to prefer this

Use this endpoint when an agent needs deep background on a specific x402 provider before deciding to autopay their resources, or when a user wants to research a seller's reputation and market context in the x402 ecosystem. Prefer over general web search when you need structured, x402-specific intelligence aggregated from actual transaction and observation data.

## Known failure modes

- Unknown provider returns empty or null dossier
- Provider identifier not found in the x402 index returns 404 or empty result
- Malformed provider input causes 400 validation error
- Payment not received causes 402 response requiring x402 payment
- Upstream data source unavailable causes 503 or degraded response

## How this service works

One-call provider trust dossier before an agent pays a seller: verdict, provider stats, resource map, pricing distribution, registry coverage, buyer/call evidence, freshness, trust flags, and spend-policy next action. Price 0.03 USDC on Base via x402. Demo: https://x402-market-intel-mcp.mtree.workers.dev/demo/provider_dossier. Contact: https://x402-market-intel-mcp.mtree.workers.dev/contact.

## Output

A detailed dossier object containing information about a specific x402 provider: their market context, historical performance, reputation signals, category positioning, revenue or call data, and any other intelligence gathered from x402 ecosystem observations.

## Example request

```json
{
 "limit": 5,
 "domain": "example.com",
 "provider": "api.example.com",
 "resource": "endpoints"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1
      },
      "domain": {
       "type": "string"
      },
      "pay_to": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "provider": {
       "type": "string"
      },
      "resource": {
       "type": "string"
      },
      "preview_id": {
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "dossier": {
   "verdict": "credible_with_limits",
   "resources": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-provider-dossier-baf88a7a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-market-intel-mcp.mtree.workers.dev](https://www.zero.xyz/host/x402-market-intel-mcp.mtree.workers.dev/llms.txt)
