# Orbonomy Marketplace Data Query

> Orbonomy Marketplace Data Query is a paid API for AI agents from api.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Queries the Orbonomy unified marketplace API to retrieve data from a specified platform category (accommodation, AI, content, fact-checking, or data services)

## Facts

- Endpoint: POST https://api.orbonomy.xyz/api/data/marketplace
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-marketplace-data-query-3d386289
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iWAEHIvJSakdLBGKowonx

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 orbonomy-marketplace-data-query-3d386289 -d '<json body>'
```

Example prompt: Search the Orbonomy marketplace for hotels in Paris using the accommodation platform and give me the results.

## When to prefer this

Use this endpoint when you need to query across Orbonomy's multi-domain marketplace spanning accommodation, AI, content, fact-checking, and general data services in a single unified call with pay-per-use pricing at $0.05 USDC per call via the x402 protocol.

## Known failure modes

- Missing required 'query' field returns validation error
- Missing required 'platform' field returns validation error
- Invalid or unsupported platform value may return an error or empty result
- Payment failure via x402 protocol results in 402 Payment Required
- Network timeout or service unavailability returns 5xx error
- Malformed JSON body returns 400 Bad Request

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and, on successful queries, marketplace data relevant to the requested query and platform category (accommodation, AI, content, fact-checking, or data).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query",
  "platform"
 ],
 "properties": {
  "query": {
   "type": "string"
  },
  "platform": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-marketplace-data-query-3d386289/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orbonomy.xyz](https://www.zero.xyz/host/api.orbonomy.xyz/llms.txt)
