# SEC EDGAR XBRL Company Facts (Latest Values) by Ticker

> SEC EDGAR XBRL Company Facts (Latest Values) 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-10).

Returns every XBRL financial fact a company has reported to the SEC, collapsed to its latest value, filterable by taxonomy and keyword search.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/company-facts/{ticker}
- Price: $0.02/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Provider: agents.x402stock.xyz
- Website: https://agents.x402stock.xyz
- Canonical page: https://www.zero.xyz/c/agents-x402stock-xyz-sec-edgar-xbrl-company-facts-latest-values-by-c64d4d30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F46_ZgnnyEfp3lWLV1NYT

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-edgar-xbrl-company-facts-latest-values-by-c64d4d30
```

Example prompt: Pull all the latest XBRL financial facts Apple has filed with the SEC — search for anything related to 'revenue' and filter to us-gaap taxonomy, up to 100 results.

## When to prefer this

Use this endpoint when you need to discover which XBRL financial metrics exist for a given company before fetching a full time series, or when you want a quick snapshot of the latest reported value for every financial concept a company has filed. Prefer this over the /concept endpoint when you don't yet know the specific XBRL tag name and need to browse or search available metrics. It is ideal for metric discovery, dashboard population, and one-shot financial snapshots from SEC EDGAR data.

## Known failure modes

- Invalid or unknown ticker symbol returns an empty facts array or 404-style error
- Taxonomy filter with unsupported value may return zero results
- Search term with no matches returns empty facts array
- Limit exceeding 500 is rejected by schema validation
- SEC EDGAR source data may have stale or delayed as_of timestamp

## How this service works

Every XBRL financial fact a company has reported to the SEC, each collapsed to its latest value: tag, taxonomy, label, unit, the figure, and the period/form/filing it came from. Filter with `?taxonomy=us-gaap|dei`, `?search=revenue`, and `?limit=`. Discover which metrics exist for a ticker before drilling into the full series via /concept. Sourced from SEC EDGAR. From x402stock

## Output

A JSON object containing the ticker, entity name, CIK, taxonomy filter applied, search term, total fact count, and an array of XBRL fact objects. Each fact includes the tag name, taxonomy, human-readable label, unit of measure, latest reported numeric value, period end date, fiscal year, fiscal period, filing form type, and filing date.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker",
  "data",
  "source",
  "as_of"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "entity_name",
    "cik",
    "taxonomy",
    "search",
    "total_facts",
    "count",
    "facts"
   ],
   "properties": {
    "cik": {
     "type": "string"
    },
    "count": {
     "type": "number"
    },
    "facts": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "tag",
       "taxonomy",
       "label",
       "unit",
       "latest_value",
       "end",
       "fiscal_year",
       "fiscal_period",
       "form",
       "filed"
      ],
      "properties": {
       "end": {
        "type": "string"
       },
       "tag": {
        "type": "string"
       },
       "form": {
        "type": "string"
       },
       "unit": {
        "anyOf": [
         {
          "type": "string"
         },
         {
          "type": "null"
         }
        ]
       },
       "filed": {
        "type": "string"
       },
       "label": {
        "anyOf": [
         {
          "type": "string"
         },
         {
          "type": "null"
         }
        ]
       },
       "taxonomy": {
        "type": "string"
       },
       "fiscal_year": {
        "anyOf": [
         {
          "type": "number"
         },
         {
          "type": "null"
         }
        ]
       },
       "latest_value": {
        "type": "number"
       },
       "fiscal_period": {
        "anyOf": [
         {
          "type": "string"
         },
         {
          "type": "null"
         }
        ]
       }
      },
      "additionalProperties": false
     }
    },
    "search": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "taxonomy": {
     "type": "string"
    },
    "entity_name": {
     "type": "string"
    },
    "total_facts": {
     "type": "number"
    }
   },
   "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-edgar-xbrl-company-facts-latest-values-by-c64d4d30/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)
