docs.vin

bodywork

The bodywork noun — identity, lifecycle, events, and every capability as an anchored section: 14 capabilities, 0 live, 14 sandbox, 0 declared.

bodywork 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

Nounbodywork
PillarServices (facets: 3 data · 8 services · 3 commerce)
Capabilities14 — 0 live · 14 sandbox · 0 declared
EntitiesCollision
Doorsaggregator.vin
SDKVin.bodywork.* from apis.vin
Address/catalog/bodywork#{action} — the anchor IS the wire name minus bodywork.

Events

The vocabulary this noun can append to the record — 27 past-tense, versioned event types, each linked to the capability that emits it:

Discover & read

status

bodywork.status · GET /bodyworks/status · gate none · sandbox · answers BodyworkStatus@1

FieldTypeRequiredNotes
vinstringno

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

the SDK — bodywork.status
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.status({"vin":"1C6SRFHM8NN186395"})
GET /bodyworks/status
curl 'https://apis.vin/bodyworks/status?vin=1C6SRFHM8NN186395'

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.

receipt · executed 2026-08-17T12:42:08.236Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkStatus@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "repairId": "COL-5659554c",
    "open": false,
    "grade": "clean"
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "repairId": "COL-5659554c",
    "open": false,
    "grade": "clean"
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

assess

bodywork.assess · GET /bodyworks/assess · gate key · sandbox · answers BodyworkAssess@1

FieldTypeRequiredNotes
vinstringno

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.assessed@1.

the SDK — bodywork.assess
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.assess({"vin":"1C6SRFHM8NN186395"})
GET /bodyworks/assess
curl 'https://apis.vin/bodyworks/assess?vin=1C6SRFHM8NN186395'

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.

receipt · executed 2026-08-17T12:42:08.204Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkAssess@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "assessment": {
      "severity": "none",
      "grade": "clean",
      "panels": 0,
      "structural": false,
      "paintWork": "none-needed"
    }
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "assessment": {
      "severity": "none",
      "grade": "clean",
      "panels": 0,
      "structural": false,
      "paintWork": "none-needed"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

Quote & price

estimate

bodywork.estimate · POST /bodyworks/estimate · gate offer · sandbox · answers BodyworkEstimate@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.estimateRequested@1 · Bodywork.estimated@1.

the SDK — bodywork.estimate
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.estimate({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/estimate
curl -X POST https://apis.vin/bodyworks/estimate \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.205Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkEstimate@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "estimateId": "DQ-1",
    "serviceType": "recon",
    "laborCents": 16165,
    "partsCents": 10777,
    "subtotalCents": 26942,
    "estimateCents": 35025,
    "currency": "USD",
    "etaMinDays": 1,
    "etaMaxDays": 5
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "estimateId": "DQ-1",
    "serviceType": "recon",
    "laborCents": 16165,
    "partsCents": 10777,
    "subtotalCents": 26942,
    "estimateCents": 35025,
    "currency": "USD",
    "etaMinDays": 1,
    "etaMaxDays": 5
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "field-services-rail-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

Apply & book

order

bodywork.order · POST /bodyworks/order · gate offer · sandbox · answers BodyworkOrder@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.completed@1 · Bodywork.dispatched@1 · Bodywork.ordered@1 · ServiceOrder.settled@1.

the SDK — bodywork.order
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.order({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/order
curl -X POST https://apis.vin/bodyworks/order \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.236Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkOrder@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "order": {
      "id": "ORD-4b5715e1",
      "item": "body panels",
      "status": "nothing-to-order",
      "amountCents": 0,
      "currency": "USD"
    },
    "payer": {
      "name": "Ava Good",
      "castRow": "super-prime",
      "creditTier": "super-prime"
    }
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "order": {
      "id": "ORD-4b5715e1",
      "item": "body panels",
      "status": "nothing-to-order",
      "amountCents": 0,
      "currency": "USD"
    },
    "payer": {
      "name": "Ava Good",
      "castRow": "super-prime",
      "creditTier": "super-prime"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

schedule

bodywork.schedule · POST /bodyworks/schedule · gate offer · sandbox · answers BodyworkSchedule@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.scheduleRequested@1 · Bodywork.scheduled@1.

the SDK — bodywork.schedule
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.schedule({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/schedule
curl -X POST https://apis.vin/bodyworks/schedule \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.236Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkSchedule@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "status": "no-open-repair"
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "status": "no-open-repair"
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

Pay & settle

pay

bodywork.pay · POST /bodyworks/pay · gate offer · sandbox · answers BodyworkPay@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.paid@1 · Bodywork.payFailed@1 · Bodywork.payRequested@1.

the SDK — bodywork.pay
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.pay({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/pay
curl -X POST https://apis.vin/bodyworks/pay \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.236Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkPay@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "payment": {
      "id": "PAY-15635f87",
      "status": "settled",
      "amountCents": 0,
      "currency": "USD"
    },
    "payer": {
      "name": "Ava Good",
      "castRow": "super-prime",
      "creditTier": "super-prime"
    }
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "payment": {
      "id": "PAY-15635f87",
      "status": "settled",
      "amountCents": 0,
      "currency": "USD"
    },
    "payer": {
      "name": "Ava Good",
      "castRow": "super-prime",
      "creditTier": "super-prime"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

Fulfill & operate

complete

bodywork.complete · POST /bodyworks/complete · gate offer · sandbox · answers BodyworkComplete@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.completeRequested@1 · Bodywork.completed@1.

the SDK — bodywork.complete
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.complete({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/complete
curl -X POST https://apis.vin/bodyworks/complete \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.205Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkComplete@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "complete",
    "status": "no-open-repair"
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "complete",
    "status": "no-open-repair"
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

panelReplace

bodywork.panelReplace · POST /bodyworks/panel-replace · gate offer · sandbox · answers BodyworkPanelReplace@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.panelReplaceFailed@1 · Bodywork.panelReplaceRequested@1 · Bodywork.panelReplaced@1.

the SDK — bodywork.panelReplace
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.panelReplace({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/panel-replace
curl -X POST https://apis.vin/bodyworks/panel-replace \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.236Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkPanelReplace@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "panelReplace",
    "status": "no-open-repair"
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "panelReplace",
    "status": "no-open-repair"
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

More actions

dentPull

bodywork.dentPull · POST /bodyworks/dent-pull · gate offer · sandbox · answers BodyworkDentPull@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.dentPullRequested@1 · Bodywork.dentPulled@1.

the SDK — bodywork.dentPull
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.dentPull({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/dent-pull
curl -X POST https://apis.vin/bodyworks/dent-pull \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.205Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkDentPull@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "dentPull",
    "status": "no-open-repair"
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "dentPull",
    "status": "no-open-repair"
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

filler

bodywork.filler · POST /bodyworks/filler · gate offer · sandbox · answers BodyworkFiller@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.fillerRequested@1 · Bodywork.filled@1.

the SDK — bodywork.filler
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.filler({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/filler
curl -X POST https://apis.vin/bodyworks/filler \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.235Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkFiller@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "filler",
    "status": "no-open-repair"
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "filler",
    "status": "no-open-repair"
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

panelId

bodywork.panelId · GET /bodyworks/panel-id · gate none · sandbox · answers BodyworkPanelId@1

FieldTypeRequiredNotes
vinstringno

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

the SDK — bodywork.panelId
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.panelId({"vin":"1C6SRFHM8NN186395"})
GET /bodyworks/panel-id
curl 'https://apis.vin/bodyworks/panel-id?vin=1C6SRFHM8NN186395'

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.

receipt · executed 2026-08-17T12:42:08.236Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkPanelId@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "panel": {
      "status": "no-damage-recorded"
    }
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "panel": {
      "status": "no-damage-recorded"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

prime

bodywork.prime · POST /bodyworks/prime · gate offer · sandbox · answers BodyworkPrime@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.primeRequested@1 · Bodywork.primed@1.

the SDK — bodywork.prime
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.prime({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/prime
curl -X POST https://apis.vin/bodyworks/prime \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.236Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkPrime@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "prime",
    "status": "no-open-repair"
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "prime",
    "status": "no-open-repair"
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

sand

bodywork.sand · POST /bodyworks/sand · gate offer · sandbox · answers BodyworkSand@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.sandRequested@1 · Bodywork.sanded@1.

the SDK — bodywork.sand
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.sand({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/sand
curl -X POST https://apis.vin/bodyworks/sand \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.236Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkSand@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "sand",
    "status": "no-open-repair"
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "sand",
    "status": "no-open-repair"
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

weld

bodywork.weld · POST /bodyworks/weld · gate offer · sandbox · answers BodyworkWeld@1

FieldTypeRequiredNotes
vinstringno

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.

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /1C6SRFHM8NN186395 (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.

EmitsBodywork.weldFailed@1 · Bodywork.weldRequested@1 · Bodywork.welded@1.

the SDK — bodywork.weld
import { bodywork } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await bodywork.weld({"vin":"1C6SRFHM8NN186395"})
POST /bodyworks/weld
curl -X POST https://apis.vin/bodyworks/weld \
  -H 'content-type: application/json' \
  -d '{"vin":"1C6SRFHM8NN186395"}'

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.

receipt · executed 2026-08-17T12:42:08.236Z · HTTP 200
{
  "type": "OK",
  "answers": "BodyworkWeld@1",
  "value": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "weld",
    "status": "no-open-repair"
  },
  "evidence": {
    "vin": "1C6SRFHM8NN186395",
    "noun": "bodywork",
    "asOf": "2026-08-10",
    "position": "NoLoss",
    "operation": "weld",
    "status": "no-open-repair"
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-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.

Collision


Generated from the catalog. Every capability, answer, gate, and entity on this page is a rendered descriptor — it cannot drift from the wire.