Run NHTSA vehicle VIN decoder.
API Acre verifies the exact x402 price, Base network, recipient, and request before any wallet opens. One successful call costs $0.003 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.003 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/data/vin-decode
npx --yes agentcash@latest fetch https://apiacre.com/v1/data/vin-decode \
--method POST \
--header 'content-type: application/json' \
--body '{"vin":"1HGCM82633A004352","model_year":2003}' \
--payment-protocol x402 \
--payment-network base \
--max-amount 0.003See the result before connecting · Curated static example
NHTSA vehicle VIN decoder 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": "data.vin-decode",
"version": "1",
"data": {
"vin": "1HGCM82633A004352",
"modelYearHint": 2003,
"decode": {
"status": "clean",
"clean": true,
"errorCodes": [
0
],
"errorText": "0 - VIN decoded clean. Check Digit (9th position) is correct",
"apiMessage": "Results returned successfully. NOTE: Any missing decoded values should be interpreted as NHTSA does not have data on the specific variable. Missing value should NOT be interpreted as an indication that a feature or technology is unavailable for a vehicle."
},
"decodedFieldCount": 20,
"missingFields": [
"series",
"driveType",
"fuelTypeSecondary",
"electrificationLevel",
"engine.manufacturer",
"plant.companyName",
"occupancy.seats",
"occupancy.seatRows"
],
"vehicle": {
"make": "HONDA",
"model": "Accord",
"modelYear": 2003,
"manufacturer": "AMERICAN HONDA MOTOR CO., INC.",
"manufacturerId": 988,
"vehicleType": "PASSENGER CAR",
"bodyClass": "Coupe",
"series": null,
"trim": "EX-V6",
"doors": 2,
"driveType": null,
"fuelTypePrimary": "Gasoline",
"fuelTypeSecondary": null,
"electrificationLevel": null,
"engine": {
"cylinders": 6,
"displacementLiters": 2.998832712,
"horsepower": 240,
"model": "J30A4",
"manufacturer": null
},
"transmission": {
"style": "Automatic",
"speeds": 5
},
"plant": {
"city": "MARYSVILLE",
"state": "OHIO",
"country": "UNITED STATES (USA)",
"companyName": null
},
"occupancy": {
"seats": null,
"seatRows": null,
"grossVehicleWeightRating": "Class 1C: 4,001 - 5,000 lb (1,814 - 2,268 kg)"
}
},
"source": {
"provider": "National Highway Traffic Safety Administration",
"dataset": "vPIC",
"endpointUrl": "https://vpic.nhtsa.dot.gov/api/vehicles/DecodeVinValuesExtended/1HGCM82633A004352?format=json&modelyear=2003",
"documentationUrl": "https://vpic.nhtsa.dot.gov/api/",
"attribution": "NHTSA Product Information Catalog and Vehicle Listing (vPIC).",
"rateControlNotice": "NHTSA applies automated traffic rate controls; API Acre caches results and does not bypass those controls."
},
"retrievedAt": "2026-08-12T01:30:00+00:00",
"limitations": [
"Missing decoded values mean NHTSA has no data for that variable, not that a feature is absent.",
"A decode does not establish ownership, title, registration, accident, theft, recall, or vehicle-condition status.",
"VINs can be linkable vehicle identifiers; do not use this result to identify or profile a person."
]
},
"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.