Run SEC public company evidence bundle.
API Acre verifies the exact x402 price, Base network, recipient, and request before any wallet opens. One successful call costs $0.1 USDC.
API Acre never receives your private key; signing stays inside your wallet.
1 · Run one call
- Network
- Recipient
- USDC contract
No ETH gas needed. Connecting does not sign or pay. Coinbase Wallet supports desktop QR and mobile handoff without a browser extension. This EIP-3009 payment needs only the displayed USDC on Base—not ETH for gas—because the facilitator submits settlement. Reject any later prompt that differs from the verified amount or recipient.
Copy an exact-cap Agentic Wallet command
Running this command may automatically spend up to $0.1 USDC after Coinbase Agentic Wallet authentication and policy checks; copying it does nothing. npx --yes approves package installation. Use a separate low-value wallet and review the verified request before running it.
Review Coinbase command
npx --yes awal@latest x402 pay https://apiacre.com/v1/research/sec-company-evidence \
-X POST \
-d '{"identifier":"AAPL","filing_lookback_days":365,"max_filings":25,"forms":["10-K","10-Q","8-K"],"financial_metrics":["revenue","net_income","total_assets","diluted_eps"],"financial_period_type":"both","financial_periods":4,"insider_lookback_days":90,"max_insider_filings":5,"include_derivatives":true}' \
--max-amount 100000 \
--jsonAlternative third-party AgentCash command
The first command checks without paying; running fetch may pay up to the same exact cap.
npx --yes agentcash@latest check https://apiacre.com/v1/research/sec-company-evidence
npx --yes agentcash@latest fetch https://apiacre.com/v1/research/sec-company-evidence \
--method POST \
--header 'content-type: application/json' \
--body '{"identifier":"AAPL","filing_lookback_days":365,"max_filings":25,"forms":["10-K","10-Q","8-K"],"financial_metrics":["revenue","net_income","total_assets","diluted_eps"],"financial_period_type":"both","financial_periods":4,"insider_lookback_days":90,"max_insider_filings":5,"include_derivatives":true}' \
--payment-protocol x402 \
--payment-network base \
--max-amount 0.1See the result before connecting · Curated static example
SEC public company evidence bundle returns structured JSON. This example is static; the paid call returns a fresh result and settlement receipt.
{
"request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a",
"service": "research.sec-company-evidence",
"version": "1",
"data": {
"company": {
"cik": "0000320193",
"name": "Apple Inc.",
"tickers": [
"AAPL"
],
"exchanges": [
"Nasdaq"
],
"sic": "3571",
"sicDescription": "Electronic Computers",
"fiscalYearEnd": "0928"
},
"parameters": {
"filingLookbackDays": 365,
"maxFilings": 25,
"forms": [
"10-K",
"10-Q",
"8-K"
],
"financialMetrics": [
"revenue",
"net_income",
"total_assets",
"diluted_eps"
],
"financialPeriodType": "both",
"financialPeriods": 4,
"insiderLookbackDays": 90,
"maxInsiderFilings": 5,
"includeDerivatives": true
},
"coverage": {
"requestedSectionCount": 3,
"availableSectionCount": 3,
"partial": false,
"sections": {
"filingActivity": "available",
"financialFacts": "available",
"insiderTransactions": "available"
}
},
"filingActivity": {
"status": "available",
"data": {
"cik": "0000320193",
"name": "Apple Inc.",
"filingCount": 5,
"attentionScore": 5,
"attentionLevel": "low",
"signals": [
{
"code": "leadership_change",
"form": "8-K",
"item": "5.02",
"detail": "8-K reports director or principal-officer changes"
}
],
"filings": [
{
"form": "10-Q",
"filingDate": "2026-01-30",
"documentUrl": "https://www.sec.gov/Archives/edgar/data/320193/example/filing.htm"
}
],
"source": "https://data.sec.gov/submissions/CIK0000320193.json"
}
},
"financialFacts": {
"status": "available",
"data": {
"cik": "0000320193",
"entityName": "Apple Inc.",
"taxonomy": "us-gaap",
"metrics": {
"revenue": {
"unit": "USD",
"observations": [
{
"end": "2025-09-27",
"val": 416161000000,
"form": "10-K",
"filed": "2025-10-31"
}
]
}
},
"missingMetrics": [],
"source": "https://data.sec.gov/api/xbrl/companyfacts/CIK0000320193.json"
}
},
"insiderTransactions": {
"status": "available",
"data": {
"cik": "0000320193",
"name": "Apple Inc.",
"lookbackDays": 90,
"includeDerivatives": true,
"summary": {
"filingCount": 1,
"transactionCount": 3,
"codeCounts": {
"M": 2,
"F": 1
}
},
"filings": [
{
"accessionNumber": "0001140361-26-025622",
"form": "4",
"filingDate": "2026-06-17",
"transactionCount": 3
}
],
"warnings": [],
"source": "https://data.sec.gov/submissions/CIK0000320193.json"
}
},
"warnings": [],
"sources": [
"https://data.sec.gov/api/xbrl/companyfacts/CIK0000320193.json",
"https://data.sec.gov/submissions/CIK0000320193.json"
],
"retrievedAt": "2026-08-12T00:00:00Z",
"limitations": [
"Coverage is bounded by the requested lookback periods, filing limits, and supported XBRL metrics.",
"Issuer filings can be amended, restated, delayed, incomplete, or reported under company-specific concepts.",
"Form 4 transaction codes and footnotes require contextual review and do not establish intent."
],
"disclaimer": "Official SEC evidence normalized for research only; not investment, legal, tax, accounting, credit, sanctions, or compliance advice."
},
"meta": {
"duration_ms": 42,
"cached": false,
"sources": [],
"warnings": [],
"next_actions": []
}
}Review exact request JSON
2 · Authorize one call
Connected wallet:
Signing authorizes only the verified amount and recipient for this request. Reject the wallet prompt if anything differs.
Result
Settlement receipt
Change the request (optional)
The default request is verified automatically. Editing it invalidates the quote and requires this no-payment verification again.
Prefer your own client? Use the official x402 SDK examples. Browser checkout requires an EVM wallet with USDC on Base; command-line buyers require their own separately configured wallet and spending policy.