Pay with a wallet
Use an installed EVM wallet, or open Coinbase Wallet through a desktop QR code or mobile handoff.
API Acre verifies the exact x402 price, Base network, recipient, and request before any wallet opens. One successful call costs $0.01 USDC.
API Acre never receives your private key; signing stays inside your wallet.
Connecting opens Coinbase Wallet. It does not sign or pay.
Both routes use this exact verified request and one-call price. Nothing is connected, signed, installed, or paid until you continue.
Use an installed EVM wallet, or open Coinbase Wallet through a desktop QR code or mobile handoff.
Copy a command locked to this endpoint, request, and exact USDC cap. Copying is inert; running it may install the official CLI and pay after its authentication and policy checks.
No ETH gas needed. Connecting does not sign or pay. This EIP-3009 payment needs only the displayed USDC on Base because the facilitator submits settlement. Reject any later prompt that differs from the verified amount or recipient.
Running this command may automatically spend up to $0.01 USDC. npx --yes approves package installation. Use a separate low-value wallet and review the verified request first.
npx --yes awal@latest x402 pay https://apiacre.com/v1/research/lei-entity-search \
-X POST \
-d '{"legal_name":"Apple Inc.","country_code":"US","max_results":3}' \
--max-amount 10000 \
--jsonThe 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/lei-entity-search
npx --yes agentcash@latest fetch https://apiacre.com/v1/research/lei-entity-search \
--method POST \
--header 'content-type: application/json' \
--body '{"legal_name":"Apple Inc.","country_code":"US","max_results":3}' \
--payment-protocol x402 \
--payment-network base \
--max-amount 0.01GLEIF legal entity search 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.lei-entity-search",
"version": "1",
"data": {
"status": "matched",
"query": {
"mode": "legal_name",
"value": "Apple Inc.",
"countryCode": "US",
"maxResults": 3
},
"matchCount": 1,
"totalCandidates": 20,
"matches": [
{
"lei": "HWUPKR0MPOU8FGXBT394",
"legalName": "Apple Inc.",
"otherNames": [
{
"name": "Apple Computer, Inc.",
"type": "PREVIOUS_LEGAL_NAME",
"language": "en"
}
],
"match": {
"type": "exact",
"score": 1.0
},
"legalAddress": {
"addressLines": [
"C/O C T Corporation System",
"330 N. Brand Blvd"
],
"city": "Glendale",
"region": "US-CA",
"country": "US",
"postalCode": "91203"
},
"headquartersAddress": {
"addressLines": [
"One Apple Park Way"
],
"city": "Cupertino",
"region": "US-CA",
"country": "US",
"postalCode": "95014"
},
"registeredAs": "806592",
"jurisdiction": "US-CA",
"category": "GENERAL",
"legalForm": {
"id": "H1UM",
"other": null
},
"entityStatus": "ACTIVE",
"creationDate": "1977-01-03T00:00:00Z",
"registrationAuthority": {
"id": "RA000598",
"other": null
},
"registration": {
"status": "ISSUED",
"initialDate": "2012-06-06T15:53:00Z",
"lastUpdated": "2026-03-03T16:34:33Z",
"nextRenewal": "2027-03-08T17:27:20Z",
"corroborationLevel": "FULLY_CORROBORATED",
"validationAuthority": {
"id": "RA000598",
"other": null
}
},
"mappedIdentifiers": {
"bic": [
"APLEUS66XXX"
],
"spGlobal": [
"24937"
]
},
"relationshipsAvailable": {
"directParent": false,
"directParentException": true,
"ultimateParent": false,
"ultimateParentException": true,
"directChildren": true,
"ultimateChildren": true,
"isins": true
},
"conformityFlag": "CONFORMING",
"source": "https://api.gleif.org/api/v1/lei-records/HWUPKR0MPOU8FGXBT394"
}
],
"goldenCopyPublishedAt": "2026-08-11T00:00:00Z",
"source": "https://api.gleif.org/api/v1/lei-records",
"retrievedAt": "2026-08-11T08:30:00+00:00",
"license": {
"id": "CC0-1.0",
"url": "https://creativecommons.org/publicdomain/zero/1.0/",
"termsUrl": "https://www.gleif.org/en/meta/lei-data-terms-of-use/"
},
"limitations": [
"Name-match scores rank candidates but do not establish identity.",
"Not every legal entity has an LEI, and source records may be stale or incomplete.",
"Relationship flags indicate available GLEIF links; they do not expand the relationship records."
],
"disclaimer": "Official public LEI reference data normalized from GLEIF. Corroborate name matches before KYC, credit, legal, compliance, or counterparty decisions."
},
"meta": {
"duration_ms": 42,
"cached": false,
"sources": [],
"warnings": [],
"next_actions": [
{
"service": "web.business-due-diligence",
"title": "Business domain due diligence",
"reason": "Combine a selected legal-entity candidate with public website, DNS, TLS, RDAP, and site-quality evidence.",
"method": "POST",
"path": "/v1/web/business-due-diligence",
"price": "$0.1",
"input_template": {
"url": "$companyDomainUrl",
"legal_name": "$result.data.matches[0].legalName",
"country_code": "$result.data.matches[0].legalAddress.country"
},
"use_output": "Continue only after selecting the correct candidate; the follow-up report does not prove that the entity controls the domain.",
"authorization_required": true
},
{
"service": "research.ofac-entity-search",
"title": "OFAC entity candidate evidence",
"reason": "Compare a selected official legal name with current OFAC Entity records and aliases.",
"method": "POST",
"path": "/v1/research/ofac-entity-search",
"price": "$0.02",
"input_template": {
"entity_name": "$result.data.matches[0].legalName",
"minimum_score": 85,
"max_results": 5,
"include_weak_aliases": false
},
"use_output": "Review returned candidates against the official record and program authority; no candidate is not compliance clearance.",
"authorization_required": true
}
]
}
}Connected wallet:
Signing authorizes only the verified amount and recipient for this request. Reject the wallet prompt if anything differs.
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.