v5

latestOpenAPI 3.1.0Proprietary2026-08-031,5423,1505.5 MB
Finance

Bulk resolve up to 50 ticker queries to canonical symbols

Comma-separated bulk variant of /resolve. Re-uses the same per-symbol 7-day cache as the single endpoint, so warmed entries are returned instantly (no upstream HTTP). Defaults to strict=true to keep latency bounded; upstream /search fallback is opt-in for bulk because each miss otherwise triggers two upstream round-trips per symbol.

get/api/v2/quotes/resolve/bulk

Query parameters

qstring required

Comma-separated ticker queries (1-50 distinct entries, ≤ 64 chars each, e.g. AAPL,9988,7203,005930).

Comma-separated ticker queries (1-50 distinct entries, ≤ 64 chars each, e.g. AAPL,9988,7203,005930).

strictboolean

When true (default for bulk), skip upstream /search fallback for misses. Set to false to opt-in.

When true (default for bulk), skip upstream /search fallback for misses. Set to false to opt-in.

Response

Per-query resolutions plus a list of queries that could not be resolved.

Example response

{
  "data": {
    "results": [
      {
        "query": "9988",
        "resolution": {
          "symbol": "9988.HK",
          "exchange": "HKG",
          "name": "Alibaba Group Holding Limited",
          "source": "static_map",
          "primary_listing": "9988.HK",
          "alternatives": [
            "9988.HK"
          ],
          "share_class_siblings": [
            "BRK-B"
          ],
          "company_id": "Q1359568",
          "figi": "BBG006G2JVL2",
          "delisting_signals": [
            "wikidata_p582"
          ],
          "delisting_end_date": "2020-11-12",
          "relisted_at": "2021-11-09",
          "listing_date": "2008-10-06",
          "series": "EQ",
          "group": "A"
        }
      }
    ],
    "not_found": [
      "XYZNONSENSE"
    ],
    "requested": 4,
    "resolved": 3,
    "cached": 2
  },
  "meta": {
    "endpoint": "/api/v1/fred/us/cpi",
    "data_time": "2026-04-16T14:30:00Z",
    "response_time": "2026-04-16T14:30:12Z",
    "provider": "Sugra API v1.0.1",
    "source": "sugra_crypto",
    "attribution": "Short interest and Reg SHO daily short volume data is owned by and sourced from FINRA (Financial Industry Regulatory Authority).",
    "fallback_chain": [
      "sugra_crypto",
      "sugra_finance"
    ]
  }
}