# 2s.io Vehicle 360 Profile

> 2s.io Vehicle 360 Profile is a paid API for AI agents from 2s.io, paid per call via x402, $0.00576/call, status unknown (last checked 2026-09-14).

Decode a VIN and return the full vehicle profile including NHTSA decoded specs, open safety recalls, and owner complaints in a single call

## Facts

- Endpoint: GET https://2s.io/api/vehicle/profile
- Price: $0.00576/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-vehicle-360-profile-b201635a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ioBnLNZawhVAO7Q3SUjiS

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability 2s-io-vehicle-360-profile-b201635a
```

Example prompt: Can you pull the full safety profile for VIN 1HGCM82633A123456 — I want to see the decoded vehicle specs, any open NHTSA recalls including whether it needs to be parked outside, and all owner complaints flagging crashes, fires, or injuries?

## When to prefer this

Use this endpoint when you need a comprehensive, single-call vehicle safety dossier tied to a specific VIN — it combines VIN decoding, recall lookup, and complaint history in one request rather than requiring three separate API calls. Prefer this over individual endpoints (/api/vehicle/vin-decode, /api/vehicle/recalls, /api/vehicle/complaints) when you need all three data points together for used-car due diligence, fleet safety audits, or insurance underwriting. Ideal when recall and complaint data must be keyed to the exact decoded vehicle (not a generic make/model feed).

## Known failure modes

- Invalid or malformed VIN (not 17 characters) — returns error in decode section
- VIN not found in NHTSA vPIC database — decode section returns error
- No recalls found for decoded make/model/year — recalls section returns found=false
- No complaints found for decoded make/model/year — complaints section returns found=false
- Pre-1980 VIN ambiguity without modelYear provided — may return incorrect or multiple matches
- Upstream NHTSA API unavailability — individual sections report error independently

## How this service works

Vehicle 360 — decode a VIN and get its full safety picture in one call. Returns the decoded vehicle (make, model, year, trim, engine, plant, body class, drivetrain — NHTSA vPIC) plus that exact make/model/year's open safety recalls (with park-it / park-outside / over-the-air-update flags) and NHTSA owner complaints (crash/fire/injury/death flags). recalls and complaints are keyed to the decoded make+model+year, so they describe THIS vehicle, not a generic feed. Each section reports found/error independently. Pass vin (17 chars); optional modelYear disambiguates pre-1980 VINs. Used for used-car due diligence, fleet safety, insurance. Individual sources: /api/vehicle/vin-decode, /api/vehicle/recalls, /api/vehicle/complaints.

## Output

A structured JSON response with three sections: (1) decoded vehicle info (make, model, year, trim, engine, plant, body class, drivetrain from NHTSA vPIC), (2) open safety recalls matched to that exact make/model/year with park-it, park-outside, and OTA-update flags, and (3) NHTSA owner complaints with crash, fire, injury, and death flags. Each section reports independently with found/error status.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "vin": "1HGCM82633A123456"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [
      "vin"
     ],
     "properties": {
      "vin": {
       "type": "string",
       "description": "17-character Vehicle Identification Number."
      },
      "modelYear": {
       "type": "integer",
       "maximum": 2099,
       "minimum": 1949,
       "description": "Optional — disambiguates older VINs."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-vehicle-360-profile-b201635a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
