Cite Concept
Join a registry-backed concept value to filing prose and optional extraction evidence.
Tier: paid | Cache: cache-only | Playground: authenticated only | Contract: 1.0.0
When To Use It
Use these tools when the model needs normalized financial facts, concept-level series, or statement-shaped outputs grounded in XBRL.
Request Examples
BASE_URL="${EDGAR_API_URL:-https://www.edgarparser.com}"
curl -sS "$BASE_URL/api/concept/cite" \
-X POST \
-H "Authorization: Bearer $EDGAR_API_KEY" \
-H "Content-Type: application/json" \
--data '{"concept_name":"revenue","date_type":"Q","full_year_mode":false,"quarter":4,"source":"auto","ticker":"AAPL","year":2025}'import os
import requests
base_url = os.getenv("EDGAR_API_URL", "https://www.edgarparser.com")
headers = {"Authorization": f"Bearer {os.environ['EDGAR_API_KEY']}"}
payload = {
"concept_name": "revenue",
"date_type": "Q",
"full_year_mode": False,
"quarter": 4,
"source": "auto",
"ticker": "AAPL",
"year": 2025
}
response = requests.post(f"{base_url}/api/concept/cite", headers=headers, json=payload, timeout=30)
response.raise_for_status()
data = response.json()Response Fields To Inspect
status/semantic_statusfor whether the tool produced a usable fact set.coverage_statusandcoverage_warningbefore treating the value as complete.source_ref, concept names, units, and period metadata for citation and auditability.
Errors And Coverage
401or403: the API key is missing, expired, or not allowed to use this tier.429: retry after the rate-limit window, and prefer broader batch or series tools over repeated single-period calls.- This tool is cache-only; if the target filing is not warm, warm it through an allowed paid path before retrying.
- Paid or LLM-backed paths should be used only when cheaper fact, filing, table, or text tools cannot answer the question.
- Treat partial coverage, empty arrays, and warning fields as answer-quality signals even when HTTP status is
200.
Related Tools
Concept, Filing Evidence, Filing Document
Generated Reference
Contract
| Field | Value |
|---|---|
| Tool | cite_concept |
| Method | POST |
| Path | /api/concept/cite |
| Contract version | 1.0.0 |
| Schema fingerprint | sha256:d1882029f22dea42e352b4446cfec589403321cb8f27c6a7b1fce6248cfd9736 |
Parameters
| Name | Location | Required | Type | Notes |
|---|---|---|---|---|
| none | - | - | - | - |
Request Body Schema
{
"additionalProperties": false,
"properties": {
"allow_stale_extractions": {
"default": false,
"type": "boolean"
},
"concept_name": {
"type": "string"
},
"date_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"full_year_mode": {
"default": false,
"type": "boolean"
},
"include_extractions": {
"default": false,
"type": "boolean"
},
"max_narrative_spans_per_source": {
"default": 5,
"maximum": 50.0,
"minimum": 1.0,
"type": "integer"
},
"narrative_sources": {
"items": {
"type": "string"
},
"type": "array"
},
"quarter": {
"maximum": 4.0,
"minimum": 1.0,
"type": "integer"
},
"source": {
"default": "auto",
"type": "string"
},
"ticker": {
"type": "string"
},
"year": {
"type": "integer"
}
},
"required": [
"ticker",
"year",
"quarter",
"concept_name"
],
"type": "object"
}Response Schema (200)
{}