SEC normalized financial facts
Retrieve normalized, recent issuer-reported revenue, earnings, balance-sheet, cash-flow, and diluted-EPS facts from official SEC XBRL data.
Endpoint
https://apiacre.com/v1/research/sec-financial-factsSend the JSON body below. An unpaid request returns HTTP 402 with a PAYMENT-REQUIRED header; an x402-compatible buyer signs the requirement and retries with PAYMENT-SIGNATURE.
Pay $0.02 USDC and run in your browserOfficial Coinbase agent path
Coinbase Agentic Wallet can satisfy this x402 request in one command. Running it may pay automatically, so --max-amount is fixed to $0.02 USDC in atomic units. Copying the command does not install, authenticate, sign, or pay; review the request and use a separate low-value wallet before running it.
npx --yes awal@latest x402 pay https://apiacre.com/v1/research/sec-financial-facts \
-X POST \
-d '{"identifier":"AAPL","metrics":["revenue","net_income","total_assets","diluted_eps"],"period_type":"both","periods":4}' \
--max-amount 20000 \
--jsonCoinbase pay-for-service documentation · Buyer setup and wallet safety
Alternative third-party AgentCash commands
Run check first without payment. Its fetch command may automatically pay up to the exact listed price.
npx --yes agentcash@latest check https://apiacre.com/v1/research/sec-financial-facts
npx --yes agentcash@latest fetch https://apiacre.com/v1/research/sec-financial-facts \
--method POST \
--header 'content-type: application/json' \
--body '{"identifier":"AAPL","metrics":["revenue","net_income","total_assets","diluted_eps"],"period_type":"both","periods":4}' \
--payment-protocol x402 \
--payment-network base \
--max-amount 0.020Input example
{
"identifier": "AAPL",
"metrics": [
"revenue",
"net_income",
"total_assets",
"diluted_eps"
],
"period_type": "both",
"periods": 4
}Response shape
{
"request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a",
"service": "research.sec-financial-facts",
"version": "1",
"data": {
"cik": "0000320193",
"entityName": "Apple Inc.",
"taxonomy": "us-gaap",
"periodType": "both",
"periodsPerMetric": 4,
"metrics": {
"revenue": {
"concept": "RevenueFromContractWithCustomerExcludingAssessedTax",
"label": "Revenue",
"description": "Revenue from contracts with customers, excluding assessed tax.",
"unit": "USD",
"observations": [
{
"start": "2024-09-29",
"end": "2025-09-27",
"val": 416161000000,
"accn": "0000320193-25-000079",
"fy": 2025,
"fp": "FY",
"form": "10-K",
"filed": "2025-10-31",
"frame": "CY2025"
}
]
}
},
"missingMetrics": [],
"source": "https://data.sec.gov/api/xbrl/companyfacts/CIK0000320193.json",
"retrievedAt": "2026-08-09T00:00:00Z",
"disclaimer": "Standardized issuer-reported XBRL facts only; verify filing context before use. Not investment, legal, accounting, or credit advice."
},
"meta": {
"duration_ms": 42,
"cached": false,
"sources": [],
"warnings": [],
"next_actions": []
}
}Try the payment challenge
curl -i -X POST 'https://apiacre.com/v1/research/sec-financial-facts' \
-H 'content-type: application/json' \
--data '{"identifier":"AAPL","metrics":["revenue","net_income","total_assets","diluted_eps"],"period_type":"both","periods":4}'