---
title: "Long-term concept history"
method: GET
path: "/api/v1/fundamentals/{ticker}/history/{concept}"
tags: ["Fundamentals"]
---

# Long-term concept history

`GET /api/v1/fundamentals/{ticker}/history/{concept}`

Full time series for a single XBRL concept - up to 37+ years of history. Use /{ticker}/concepts to discover available concept names. Optionally filter by form type (10-K for annual, 10-Q for quarterly).

## Path parameters

- `ticker` string, required — Security ticker symbol.
- `concept` string, required — XBRL concept name.

## Query parameters

- `taxonomy` 'us-gaap' | 'dei' — XBRL taxonomy (us-gaap or dei).
- `form` string, nullable — Filter by form type: 10-K, 10-Q, or None for all

## Response `200`

SEC EDGAR full history for a single XBRL concept, up to 37+ years of filings.

- EnvelopeFundamentalsTickerHistoryConceptData
  - `data` FundamentalsTickerHistoryConceptData, required
    - `entity_name` string, required — Entity human-readable name.
    - `cik` string, required — SEC Central Index Key.
    - `taxonomy` string, required — Reporting taxonomy (us-gaap, ifrs-full, dei, etc.).
    - `concept` string, required — XBRL concept tag.
    - `label` string, required — Human-readable label.
    - `description` string, required — Human-readable description.
    - `form_filter` unknown, required
    - `total_periods` integer, required — Total number of periods.
    - `data` FundamentalsDatum[], required — Primary payload.
      - `end` string, required — End of the data range or time window.
      - `start` string, required — Start of the data range or pagination cursor.
      - `val` integer, required — Reported numeric value.
      - `form` string, required — SEC filing form type (10-K, 10-Q, 8-K, etc).
      - `filed` string, required — Date the document was filed (YYYY-MM-DD).
      - `fy` integer, required — Fiscal year.
      - `fp` string, required — Fiscal period (FY, Q1, Q2, Q3).
      - `frame` string, required — XBRL frame identifier.
      - `unit` string, required — Unit of measure.
    - `source` string, required — Upstream data source identifier.
  - `meta` SugraMeta, required — Metadata attached to every /api/v1/* response envelope.
    - `endpoint` string, required — Requested endpoint path.
    - `data_time` string, required — ISO 8601 UTC timestamp of the source data, not of the request.
    - `response_time` string, required — ISO 8601 UTC timestamp when this response was produced.
    - `provider` string, required — API name and version.
    - `source` string, nullable — Identifier of the primary upstream source used for this response.
    - `attribution` string, nullable — Human-readable attribution mandated by an upstream source (e.g. a securities regulator or self-regulatory organization). Present only on responses whose source requires the owner and source to be clearly identified. Do not remove or alter it when using the response.
    - `fallback_used` boolean, nullable — True when the primary source failed and a fallback produced the data.
    - `fallback_chain` string[], nullable — Ordered list of sources attempted, in the order they were tried.
    - `cached` boolean, nullable — True when this response was served from the internal cache.
    - `stale` boolean, nullable — True when the cached response was returned after the upstream rate-limited or errored. Clients can use this to detect degraded data.

## Other responses

- `401` — Missing or invalid `x-api-key` header. JSON body with a stable `code` distinguishing `missing_api_key` (no header sent) from `invalid_api_key` (header sent, key not accepted); any other 401 source carries the generic `unauthorized` with its detail as `reason`. Plus `hint`. `plan` is always null on 401 - an unauthenticated request has no plan; quota exhaustion is 429, not 401.
- `422` — Validation Error
- `429` — Daily rate limit exceeded. Check `X-RateLimit-Reset` for the next window.
- `503` — Upstream source is temporarily unavailable. Retry after a short delay.

---

[API](https://skmtc.net/sugra/apis/sugra-api.md) · [All operations](https://skmtc.net/sugra/apis/sugra-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sugra/sugra-api/versions/d3e3d9c28132/schema)
