# Quotient Asset Search & Resolver

> Quotient Asset Search & Resolver is a paid API for AI agents from quotient-api-gateway.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Resolves companies, commodities, crypto assets, and other underlyings by name, ticker, UUID, or platform identifier, returning linked prediction markets with venue odds, Quotient probabilities, and thesis summaries.

## Facts

- Endpoint: GET https://quotient-api-gateway.onrender.com/api/v1/assets/search
- 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/quotient-asset-search-resolver-1b5174da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__QnJeaSDfWMHG1dlP4S2T

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 quotient-asset-search-resolver-1b5174da
```

Example prompt: Search Quotient for all active prediction markets linked to Bitcoin, and show me the venue odds alongside Quotient's latest probability and thesis for each market — use material_only=true so I just get the enriched digest.

## When to prefer this

Use this endpoint when you need to resolve a named entity (company, crypto, commodity) to its Quotient asset profile and discover all linked prediction markets in one call. Prefer this over the markets search endpoint when you are starting from an asset name or identifier rather than a market question. Use q=* with material_only=true for a broad enriched digest of all tracked material assets without specifying a target.

## Known failure modes

- No assets found for an obscure or misspelled name — returns empty results
- Ambiguous query (e.g. common word) returns too many loosely matched assets
- Platform identifier not recognized if wrong platform string is provided
- material_only=true with a narrow q may return no results if no material assets match
- Service cold-start latency on Render free tier may cause timeouts on first call
- Rate limiting or payment failure (x402) if USDC payment is not properly attached

## How this service works

Use this to resolve companies, commodities, cryptoassets, and other underlyings by name, ticker, canonical key, UUID, platform identifier, or linked-market reference. Exact-reference results return every active directly linked market with quote provenance, Q's latest probability and paired thesis, and publication availability. Text results summarize those markets. Probabilities and theses remain tied to their exact questions.

## Output

Returns a list of matched asset records, each containing the asset's canonical identity (name, UUID, type, tickers, platform IDs), every active directly linked prediction market with venue odds and Quotient's calibrated probability, a paired thesis summary when available, and publication availability flags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      },
      "platform": {
       "type": "string"
      },
      "reference": {
       "type": "array",
       "items": {
        "type": "string",
        "maxLength": 200,
        "minLength": 1
       }
      },
      "asset_type": {
       "type": "string"
      },
      "material_only": {
       "type": "boolean",
       "default": false
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quotient-asset-search-resolver-1b5174da/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quotient-api-gateway.onrender.com](https://www.zero.xyz/host/quotient-api-gateway.onrender.com/llms.txt)
