# Oblique Markets Listing Triage

> Oblique Markets Listing Triage 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-15).

Analyzes a marketplace listing's history for persistence, price changes, duplicate variants, and buy signal indicators

## Facts

- Endpoint: GET https://api.oblique.markets/api/v1/paid/listing-triage
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-listing-triage-f8323440
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6cXQoJ0D9fXUJ_DOKpJR5

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-listing-triage-f8323440
```

Example prompt: Can you triage this listing for me — https://somemarket.com/listing/12345 — and tell me if it's been around a while, whether the price has changed, if there are duplicate variants, and whether now looks like a good time to buy?

## When to prefer this

Choose this endpoint when you need a consolidated, AI-powered triage of a specific marketplace listing's history — particularly when you want persistence age, price change trajectory, duplicate detection, and a buy signal all in one call, rather than manually scraping and comparing listing snapshots yourself.

## Known failure modes

- Missing or invalid listing_url and listing_name — returns an error if neither identifier is supplied
- Listing URL not reachable or not recognized — may return empty or partial triage data
- Payment failure or insufficient USDC balance — request blocked before processing
- Rate limiting or quota exceeded — HTTP 429 response
- Listing has no historical data — buy signal and persistence fields may be null or unavailable

## How this service works

Use when an agent is deciding whether one Bazaar listing is stable enough to depend on. Returns Listing history triage: persistence, price changes, duplicate variants, and buy signal. $0.01.

## Output

A structured triage report covering listing persistence (how long the listing has been active), price change history, detection of duplicate or variant listings, and a buy signal indicator — helping the caller decide whether and when to act on a listing.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "listing_url": {
       "type": "string"
      },
      "listing_name": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "buy_signal": {
     "type": "string"
    },
    "listing_matches": {
     "type": "array"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "buy_signal": "promising",
  "listing_matches": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-listing-triage-f8323440/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)
