emissionsInspection
The emissionsInspection noun — identity, lifecycle, events, and every capability as an anchored section: 14 capabilities, 0 live, 14 sandbox, 0 declared.
emissionsInspection is one of the estate's 317 automotive nouns — a job a car needs done. It carries 14 capabilities: 0 live, 14 sandbox, 0 declared · doors aggregator.vin.
Identity
| Noun | emissionsInspection |
| Pillar | Services (facets: 5 data · 6 services · 3 commerce) |
| Capabilities | 14 — 0 live · 14 sandbox · 0 declared |
| Entities | Inspection |
| Doors | aggregator.vin |
| SDK | Vin.emissionsInspection.* from apis.vin |
| Address | /catalog/emissionsInspection#{action} — the anchor IS the wire name minus emissionsInspection. |
Events
The vocabulary this noun can append to the record — 25 past-tense, versioned event types, each linked to the capability that emits it:
EmissionsInspection.certificateFeeCharged@1— emitted bycertificateFeeEmissionsInspection.certificateFeeRequested@1— emitted bycertificateFeeEmissionsInspection.certified@1— emitted bycertifyEmissionsInspection.certifyRequested@1— emitted bycertifyEmissionsInspection.completed@1— emitted byorderEmissionsInspection.dispatched@1— emitted byorderEmissionsInspection.failRequested@1— emitted byfailEmissionsInspection.failed@1— emitted byfailEmissionsInspection.obdRead@1— emitted byobdReadEmissionsInspection.ordered@1— emitted byorderEmissionsInspection.paid@1— emitted bypayEmissionsInspection.passRequested@1— emitted bypassEmissionsInspection.passed@1— emitted bypassEmissionsInspection.payFailed@1— emitted bypayEmissionsInspection.payRequested@1— emitted bypayEmissionsInspection.performFailed@1— emitted byperformEmissionsInspection.performRequested@1— emitted byperformEmissionsInspection.performed@1— emitted byperformEmissionsInspection.readinessRead@1— emitted byreadinessEmissionsInspection.resulted@1— emitted byresultEmissionsInspection.retestRequested@1— emitted byretestEmissionsInspection.retested@1— emitted byretestEmissionsInspection.scheduleRequested@1— emitted byscheduleEmissionsInspection.scheduled@1— emitted byscheduleServiceOrder.settled@1— emitted byorder
Discover & read
status
emissionsInspection.status · GET /emissions-inspections/status · gate none · sandbox · answers EmissionsInspectionStatus@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.status({"vin":"1C4JJXSJ0MW850391"})curl 'https://apis.vin/emissions-inspections/status?vin=1C4JJXSJ0MW850391'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionStatus@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"certificate": {
"standing": "expired",
"expires": "2026-06-26"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"certificate": {
"standing": "expired",
"expires": "2026-06-26"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}result
emissionsInspection.result · GET /emissions-inspections/result · gate key · sandbox · answers EmissionsInspectionResult@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.resulted@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.result({"vin":"1C4JJXSJ0MW850391"})curl 'https://apis.vin/emissions-inspections/result?vin=1C4JJXSJ0MW850391'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionResult@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"result": {
"id": "EMT-0c7d3a18",
"result": "pass",
"verdict": "pass",
"systems": [
{
"system": "engine",
"verdict": "pass"
},
{
"system": "fuelSystem",
"verdict": "pass"
}
]
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"result": {
"id": "EMT-0c7d3a18",
"result": "pass",
"verdict": "pass",
"systems": [
{
"system": "engine",
"verdict": "pass"
},
{
"system": "fuelSystem",
"verdict": "pass"
}
]
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}obdRead
emissionsInspection.obdRead · GET /emissions-inspections/obd-read · gate key · sandbox · answers EmissionsInspectionObdRead@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.obdRead@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.obdRead({"vin":"1C4JJXSJ0MW850391"})curl 'https://apis.vin/emissions-inspections/obd-read?vin=1C4JJXSJ0MW850391'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionObdRead@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"obd": {
"codes": [],
"readiness": {
"monitors": [
{
"monitor": "engine",
"ready": true
},
{
"monitor": "fuelSystem",
"ready": true
}
],
"allReady": true
}
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"obd": {
"codes": [],
"readiness": {
"monitors": [
{
"monitor": "engine",
"ready": true
},
{
"monitor": "fuelSystem",
"ready": true
}
],
"allReady": true
}
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Quote & price
certificateFee
emissionsInspection.certificateFee · POST /emissions-inspections/certificate-fee · gate offer · sandbox · answers EmissionsInspectionCertificateFee@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.certificateFeeCharged@1 · EmissionsInspection.certificateFeeRequested@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.certificateFee({"vin":"1C4JJXSJ0MW850391"})curl -X POST https://apis.vin/emissions-inspections/certificate-fee \
-H 'content-type: application/json' \
-d '{"vin":"1C4JJXSJ0MW850391"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionCertificateFee@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"fee": {
"kind": "certificate",
"amountCents": 2500,
"currency": "USD"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"fee": {
"kind": "certificate",
"amountCents": 2500,
"currency": "USD"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Apply & book
order
emissionsInspection.order · POST /emissions-inspections/order · gate offer · sandbox · answers EmissionsInspectionOrder@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.completed@1 · EmissionsInspection.dispatched@1 · EmissionsInspection.ordered@1 · ServiceOrder.settled@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.order({"vin":"1C4JJXSJ0MW850391"})curl -X POST https://apis.vin/emissions-inspections/order \
-H 'content-type: application/json' \
-d '{"vin":"1C4JJXSJ0MW850391"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionOrder@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"order": {
"id": "ORD-84a680da",
"service": "emissions inspection",
"status": "placed",
"amountCents": 4500,
"currency": "USD"
},
"payer": {
"name": "Ava Good",
"castRow": "super-prime",
"creditTier": "super-prime"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"order": {
"id": "ORD-84a680da",
"service": "emissions inspection",
"status": "placed",
"amountCents": 4500,
"currency": "USD"
},
"payer": {
"name": "Ava Good",
"castRow": "super-prime",
"creditTier": "super-prime"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}schedule
emissionsInspection.schedule · POST /emissions-inspections/schedule · gate offer · sandbox · answers EmissionsInspectionSchedule@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.scheduleRequested@1 · EmissionsInspection.scheduled@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.schedule({"vin":"1C4JJXSJ0MW850391"})curl -X POST https://apis.vin/emissions-inspections/schedule \
-H 'content-type: application/json' \
-d '{"vin":"1C4JJXSJ0MW850391"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionSchedule@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"appointment": {
"id": "APT-50cf37ea",
"date": "2026-08-12",
"status": "scheduled"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"appointment": {
"id": "APT-50cf37ea",
"date": "2026-08-12",
"status": "scheduled"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Pay & settle
pay
emissionsInspection.pay · POST /emissions-inspections/pay · gate offer · sandbox · answers EmissionsInspectionPay@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.paid@1 · EmissionsInspection.payFailed@1 · EmissionsInspection.payRequested@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.pay({"vin":"1C4JJXSJ0MW850391"})curl -X POST https://apis.vin/emissions-inspections/pay \
-H 'content-type: application/json' \
-d '{"vin":"1C4JJXSJ0MW850391"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionPay@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"payment": {
"id": "PAY-c3f92cc4",
"status": "settled",
"amountCents": 4500,
"currency": "USD"
},
"payer": {
"name": "Ava Good",
"castRow": "super-prime",
"creditTier": "super-prime"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"payment": {
"id": "PAY-c3f92cc4",
"status": "settled",
"amountCents": 4500,
"currency": "USD"
},
"payer": {
"name": "Ava Good",
"castRow": "super-prime",
"creditTier": "super-prime"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Fulfill & operate
perform
emissionsInspection.perform · POST /emissions-inspections/perform · gate offer · sandbox · answers EmissionsInspectionPerform@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.performFailed@1 · EmissionsInspection.performRequested@1 · EmissionsInspection.performed@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.perform({"vin":"1C4JJXSJ0MW850391"})curl -X POST https://apis.vin/emissions-inspections/perform \
-H 'content-type: application/json' \
-d '{"vin":"1C4JJXSJ0MW850391"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionPerform@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"test": {
"id": "EMT-0c7d3a18",
"result": "pass",
"verdict": "pass",
"systems": [
{
"system": "engine",
"verdict": "pass"
},
{
"system": "fuelSystem",
"verdict": "pass"
}
]
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"test": {
"id": "EMT-0c7d3a18",
"result": "pass",
"verdict": "pass",
"systems": [
{
"system": "engine",
"verdict": "pass"
},
{
"system": "fuelSystem",
"verdict": "pass"
}
]
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Authorize & resolve
certify
emissionsInspection.certify · POST /emissions-inspections/certify · gate offer · sandbox · answers EmissionsInspectionCertify@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.certified@1 · EmissionsInspection.certifyRequested@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.certify({"vin":"1C4JJXSJ0MW850391"})curl -X POST https://apis.vin/emissions-inspections/certify \
-H 'content-type: application/json' \
-d '{"vin":"1C4JJXSJ0MW850391"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionCertify@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"certificate": {
"id": "EMC-680a1303",
"status": "certified",
"expires": "2026-06-26"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"certificate": {
"id": "EMC-680a1303",
"status": "certified",
"expires": "2026-06-26"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}pass
emissionsInspection.pass · POST /emissions-inspections/pass · gate offer · sandbox · answers EmissionsInspectionPass@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.passRequested@1 · EmissionsInspection.passed@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.pass({"vin":"1C4JJXSJ0MW850391"})curl -X POST https://apis.vin/emissions-inspections/pass \
-H 'content-type: application/json' \
-d '{"vin":"1C4JJXSJ0MW850391"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionPass@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"adjudication": {
"status": "passed",
"verdict": "pass"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"adjudication": {
"status": "passed",
"verdict": "pass"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}fail
emissionsInspection.fail · POST /emissions-inspections/fail · gate offer · sandbox · answers EmissionsInspectionFail@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.failRequested@1 · EmissionsInspection.failed@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.fail({"vin":"1C4JJXSJ0MW850391"})curl -X POST https://apis.vin/emissions-inspections/fail \
-H 'content-type: application/json' \
-d '{"vin":"1C4JJXSJ0MW850391"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionFail@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"adjudication": {
"status": "not-failed",
"verdict": "pass"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"adjudication": {
"status": "not-failed",
"verdict": "pass"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}More actions
expiry
emissionsInspection.expiry · GET /emissions-inspections/expiry · gate none · sandbox · answers EmissionsInspectionExpiry@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.expiry({"vin":"1C4JJXSJ0MW850391"})curl 'https://apis.vin/emissions-inspections/expiry?vin=1C4JJXSJ0MW850391'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionExpiry@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"expiry": {
"standing": "expired",
"expires": "2026-06-26"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"expiry": {
"standing": "expired",
"expires": "2026-06-26"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}readiness
emissionsInspection.readiness · GET /emissions-inspections/readiness · gate key · sandbox · answers EmissionsInspectionReadiness@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.readinessRead@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.readiness({"vin":"1C4JJXSJ0MW850391"})curl 'https://apis.vin/emissions-inspections/readiness?vin=1C4JJXSJ0MW850391'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionReadiness@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"readiness": {
"monitors": [
{
"monitor": "engine",
"ready": true
},
{
"monitor": "fuelSystem",
"ready": true
}
],
"allReady": true
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"readiness": {
"monitors": [
{
"monitor": "engine",
"ready": true
},
{
"monitor": "fuelSystem",
"ready": true
}
],
"allReady": true
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}retest
emissionsInspection.retest · POST /emissions-inspections/retest · gate offer · sandbox · answers EmissionsInspectionRetest@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /1C4JJXSJ0MW850391 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — EmissionsInspection.retestRequested@1 · EmissionsInspection.retested@1.
import { emissionsInspection } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await emissionsInspection.retest({"vin":"1C4JJXSJ0MW850391"})curl -X POST https://apis.vin/emissions-inspections/retest \
-H 'content-type: application/json' \
-d '{"vin":"1C4JJXSJ0MW850391"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "EmissionsInspectionRetest@1",
"value": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"retest": {
"status": "nothing-to-retest"
}
},
"evidence": {
"vin": "1C4JJXSJ0MW850391",
"noun": "emissionsInspection",
"asOf": "2026-08-10",
"retest": {
"status": "nothing-to-retest"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "compliance-keys-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Data model
The record shape behind this noun — one entity, each property an evidence field. See the whole estate model on the data model page.
Inspection
Generated from the catalog. Every capability, answer, gate, and entity on this page is a rendered descriptor — it cannot drift from the wire.
electrical
The electrical noun — identity, lifecycle, events, and every capability as an anchored section: 25 capabilities, 0 live, 25 sandbox, 0 declared.
engine
The engine noun — identity, lifecycle, events, and every capability as an anchored section: 25 capabilities, 2 live, 23 sandbox, 0 declared.