# 2s Canadian Vehicle Specs Lookup

> 2s Canadian Vehicle Specs Lookup is a paid API for AI agents from 2s.io, paid per call via x402, $0.00144/call, status unknown (last checked 2026-09-13).

Returns official Canadian vehicle specifications (dimensions, weight, wheelbase, etc.) for a given year, make, and optional model using NHTSA vPIC data.

## Facts

- Endpoint: GET https://2s.io/api/vehicle/canadian-specs
- Price: $0.00144/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-canadian-vehicle-specs-lookup-4054e611
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Uzv-OGDiI7LNllAfV1yVP

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-canadian-vehicle-specs-lookup-4054e611
```

Example prompt: What are the official Canadian specs for a 2022 Honda Accord — I need the dimensions, curb weight, and wheelbase.

## When to prefer this

Use this endpoint when you need official, government-sourced dimensional and weight specifications for vehicles sold in Canada, particularly when you need data like curb weight, wheelbase, or overall dimensions that differ from US-spec vehicles. Prefer this over generic vehicle data APIs when Canadian-specific specs are required.

## Known failure modes

- Missing required 'year' or 'make' parameters returns a validation error
- Year below 1971 may return no results as data coverage starts at 1971
- Misspelled or non-existent make returns empty items array with total 0
- Unrecognized model filter returns empty results rather than an error
- Payment failure via x402 results in 402 response before data is returned

## How this service works

Canadian-market vehicle dimensions and weights from NHTSA vPIC's Canadian Vehicle Specifications dataset. Pass year + make (required) and optional model to narrow. Returns one entry per matching trim with labeled dimensions — overall length/width/height (cm), wheelbase (cm), curb weight (kg), front/rear track width, interior head/leg/shoulder/hip room, and weight distribution — plus the full raw spec map. Authoritative measured specs (the SAE dimension codes), not estimates. Keyless, public-domain; covers model years 1971+.

## Output

Returns an array of matching vehicle records, each with make, model, and a specs object containing coded and human-labeled measurements (overall length in cm, overall width, overall height, curb weight in kg, wheelbase, wheel drive ratio, front and rear track widths), plus source attribution to NHTSA vPIC.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "make": "Honda",
   "year": 2022,
   "model": "Accord"
  }
 }
}
```

## 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": [
      "year",
      "make"
     ],
     "properties": {
      "make": {
       "type": "string",
       "description": "Vehicle make, e.g. Honda."
      },
      "year": {
       "type": "integer",
       "description": "4-digit model year (1971+)."
      },
      "model": {
       "type": "string",
       "description": "Optional model filter, e.g. Accord."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-canadian-vehicle-specs-lookup-4054e611/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)
