Run OFAC entity candidate evidence.
API Acre verifies the exact x402 price, Base network, recipient, and request before any wallet opens. One successful call costs $0.02 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 x402 command
The first command checks the route without paying. Running the second command through optional third-party AgentCash may automatically spend up to $0.02 USDC; copying it does nothing. npx --yes approves package installation. Use a separate low-value wallet and review the command before running it.
Review exact command
npx --yes agentcash@latest check https://apiacre.com/v1/research/ofac-entity-search
npx --yes agentcash@latest fetch https://apiacre.com/v1/research/ofac-entity-search \
--method POST \
--header 'content-type: application/json' \
--body '{"entity_name":"AEROCARIBBEAN AIRLINES","minimum_score":85,"max_results":5,"include_weak_aliases":false}' \
--payment-protocol x402 \
--payment-network base \
--max-amount 0.02See the result before connecting · Curated static example
OFAC entity candidate evidence 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.ofac-entity-search",
"version": "1",
"data": {
"status": "candidates_found",
"query": {
"entityName": "AEROCARIBBEAN AIRLINES",
"normalizedName": "aerocaribbean airlines",
"entityType": "Entity",
"minimumScore": 85,
"maxResults": 5,
"includeWeakAliases": false
},
"candidateCount": 1,
"candidatesReturned": 1,
"candidatesTruncated": false,
"candidates": [
{
"uid": "36",
"primaryName": "AEROCARIBBEAN AIRLINES",
"entityType": "Entity",
"listKind": "sdn",
"listLabel": "SDN",
"programs": [
"CUBA"
],
"countries": [
"Cuba"
],
"match": {
"matchedName": "AEROCARIBBEAN AIRLINES",
"matchedField": "primary",
"aliasQuality": null,
"score": 100.0,
"method": "exact",
"scoreAuthority": "API Acre; not the OFAC Sanctions List Search score"
},
"sourceFileUrl": "https://sanctionslistservice.ofac.treas.gov/api/PublicationPreview/exports/sdn.xml"
}
],
"dataset": {
"snapshotFetchedAt": "2026-08-12T02:00:00+00:00",
"cacheMaxAgeSeconds": 3600,
"files": [
{
"listKind": "sdn",
"listLabel": "SDN",
"filename": "sdn.xml",
"publishDate": "2026-08-07",
"recordCount": 19199,
"entityRecordCount": 9854,
"sha256": "ac00228a68345e5c0d7174713cf97e5d5a8efe7cec5c2f540ed87106f49f7474",
"sourceUrl": "https://sanctionslistservice.ofac.treas.gov/api/PublicationPreview/exports/sdn.xml"
},
{
"listKind": "consolidated-non-sdn",
"listLabel": "Consolidated Non-SDN",
"filename": "consolidated.xml",
"publishDate": "2026-07-27",
"recordCount": 481,
"entityRecordCount": 363,
"sha256": "6c9eb74d6060a8c7075dd48054e087cb83c7ccd935dfd4df6700635e12d7c84f",
"sourceUrl": "https://sanctionslistservice.ofac.treas.gov/api/PublicationPreview/exports/consolidated.xml"
}
]
},
"source": "https://ofac.treasury.gov/sanctions-list-service",
"retrievedAt": "2026-08-12T02:00:01+00:00",
"limitations": [
"Results are name-similarity candidates for manual review, not a determination that the queried entity is listed or that a transaction is permitted or prohibited.",
"This search covers separately named Entity records and their aliases only; it excludes individuals, vessels, aircraft, ownership analysis, geographic restrictions, and entities blocked under OFAC's 50 Percent Rule but not separately listed.",
"Different OFAC lists and program tags carry different restrictions; inspect the current official record, program, and legal authority before acting.",
"Name-only screening can produce false positives and false negatives. Weak aliases are excluded by default because OFAC warns they may create many false hits."
],
"guidance": {
"automation": "https://ofac.treasury.gov/faqs/287",
"fiftyPercentRule": "https://ofac.treasury.gov/faqs/10"
},
"disclaimer": "Evidence aid only. Not legal advice, a compliance certification, or a sole basis for an allow, deny, freeze, or reporting decision."
},
"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; the optional agent command uses AgentCash's separate local wallet.