# SEC XBRL Concept Time Series by Ticker

> SEC XBRL Concept Time Series by Ticker is a paid API for AI agents from agents.x402stock.xyz, paid per call via MPP, $0.02/call, status unknown (last checked 2026-09-12).

Returns the historical time series of a single XBRL financial concept (e.g. Revenues, NetIncomeLoss, Assets) for a US-listed company, sourced directly from SEC EDGAR filings.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/concept/{ticker}
- Price: $0.02/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Provider: agents.x402stock.xyz
- Website: https://agents.x402stock.xyz
- Canonical page: https://www.zero.xyz/c/agents-x402stock-xyz-sec-xbrl-concept-time-series-by-ticker-e6b2131a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vjYlxypd9vjN1c4tmGoyj

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 agents-x402stock-xyz-sec-xbrl-concept-time-series-by-ticker-e6b2131a
```

Example prompt: Pull the last 12 quarters of NetIncomeLoss for MSFT straight from their SEC filings using the us-gaap taxonomy.

## When to prefer this

Use this endpoint when you need precise, filing-grade financial time series for a specific XBRL concept pulled directly from SEC EDGAR — ideal for quantitative models, fundamental analysis, or any use case requiring auditable, source-linked financial data. Prefer this over aggregated financial data providers when you need the exact accession number, form type, and fiscal period metadata for each reported value.

## Known failure modes

- Invalid or unknown ticker returns an error or empty series
- Unknown XBRL tag returns no data or an error
- Taxonomy not supported (non us-gaap) may return empty results
- Limit exceeding 100 is rejected
- Company has not filed XBRL-tagged data for the requested concept

## How this service works

The reported time series of one XBRL financial concept (e.g. Revenues, Assets, NetIncomeLoss) for a company, taken directly from its SEC filings. Pass the tag via `?tag=` and optionally `?taxonomy=` (default us-gaap) and `?limit=`. Each point carries the value, period, fiscal year/quarter, source form, and accession. Use for precise, filing-grade fundamentals and quant time series. From x402stock

## Output

A JSON object containing the ticker, source (sec_edgar), as-of timestamp, and a data object with the XBRL tag name, taxonomy, human-readable label, unit, count, and an array of time series points. Each point includes the numeric value, start/end period dates, fiscal year, fiscal period (e.g. Q1, FY), source form (e.g. 10-K, 10-Q), filing date, frame, and accession number.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "tag": {
   "type": "string"
  },
  "limit": {
   "type": "integer",
   "default": 8,
   "maximum": 100,
   "exclusiveMinimum": 0
  },
  "ticker": {
   "type": "string",
   "description": "US-listed ticker symbol (uppercase), e.g. AAPL."
  },
  "taxonomy": {
   "type": "string",
   "default": "us-gaap"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker",
  "data",
  "source",
  "as_of"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "tag",
    "taxonomy",
    "label",
    "unit",
    "count",
    "series"
   ],
   "properties": {
    "tag": {
     "type": "string"
    },
    "unit": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "count": {
     "type": "number"
    },
    "label": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "series": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "value",
       "start",
       "end",
       "fiscal_year",
       "fiscal_period",
       "form",
       "filed",
       "frame",
       "accession"
      ],
      "properties": {
       "end": {
        "type": "string"
       },
       "form": {
        "type": "string"
       },
       "filed": {
        "type": "string"
       },
       "frame": {
        "anyOf": [
         {
          "type": "string"
         },
         {
          "type": "null"
         }
        ]
       },
       "start": {
        "anyOf": [
         {
          "type": "string"
         },
         {
          "type": "null"
         }
        ]
       },
       "value": {
        "type": "number"
       },
       "accession": {
        "type": "string"
       },
       "fiscal_year": {
        "anyOf": [
         {
          "type": "number"
         },
         {
          "type": "null"
         }
        ]
       },
       "fiscal_period": {
        "anyOf": [
         {
          "type": "string"
         },
         {
          "type": "null"
         }
        ]
       }
      },
      "additionalProperties": false
     }
    },
    "taxonomy": {
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "as_of": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ]
  },
  "source": {
   "type": "string",
   "const": "sec_edgar"
  },
  "ticker": {
   "type": "string"
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-x402stock-xyz-sec-xbrl-concept-time-series-by-ticker-e6b2131a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.x402stock.xyz](https://www.zero.xyz/host/agents.x402stock.xyz/llms.txt)
