docs.vin

pdr

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

pdr is one of the estate's 317 automotive nouns — a job a car needs done. It carries 13 capabilities: 0 live, 13 sandbox, 0 declared · doors aggregator.vin.

Identity

Nounpdr
PillarServices (facets: 4 data · 5 services · 4 commerce)
Capabilities13 — 0 live · 13 sandbox · 0 declared
EntitiesCollision
Doorsaggregator.vin
SDKVin.pdr.* from apis.vin
Address/catalog/pdr#{action} — the anchor IS the wire name minus pdr.

Events

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

Discover & read

eligibility

pdr.eligibility · GET /pdrs/eligibility · gate none · sandbox · answers PdrEligibility@1

FieldTypeRequiredNotes
vinstringno

Dooraggregator.vin serves this noun on its two routes: / (the landing) · /5N1DR2CM4LC644987 (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 — pdr.eligibility
import { pdr } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await pdr.eligibility({"vin":"5N1DR2CM4LC644987"})
GET /pdrs/eligibility
curl 'https://apis.vin/pdrs/eligibility?vin=5N1DR2CM4LC644987'

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:15.305Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrEligibility@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "eligibility": {
      "eligibility": "nothing-to-repair",
      "eligible": false,
      "dents": 0,
      "panels": 0,
      "structural": false
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "eligibility": {
      "eligibility": "nothing-to-repair",
      "eligible": false,
      "dents": 0,
      "panels": 0,
      "structural": false
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

assess

pdr.assess · GET /pdrs/assess · gate key · sandbox · answers PdrAssess@1

FieldTypeRequiredNotes
vinstringno

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

EmitsPdr.assessed@1.

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

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

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:15.265Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrAssess@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "assessment": {
      "eligibility": "nothing-to-repair",
      "dents": 0,
      "panels": 0,
      "structural": false,
      "grade": "clean",
      "severity": "none"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "assessment": {
      "eligibility": "nothing-to-repair",
      "dents": 0,
      "panels": 0,
      "structural": false,
      "grade": "clean",
      "severity": "none"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

Quote & price

quote

pdr.quote · POST /pdrs/quote · gate offer · sandbox · answers PdrQuote@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) · /5N1DR2CM4LC644987 (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.

EmitsPdr.quoteRequested@1 · Pdr.quoted@1.

the SDK — pdr.quote
import { pdr } from 'apis.vin'

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

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:15.492Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrQuote@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "estimate": {
      "status": "nothing-to-repair",
      "amountCents": 0,
      "currency": "USD"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "estimate": {
      "status": "nothing-to-repair",
      "amountCents": 0,
      "currency": "USD"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

estimate

pdr.estimate · GET /pdrs/estimate · gate key · sandbox · answers PdrEstimate@1

FieldTypeRequiredNotes
vinstringno

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

EmitsPdr.estimated@1.

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

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await pdr.estimate({"vin":"5N1DR2CM4LC644987"})
GET /pdrs/estimate
curl 'https://apis.vin/pdrs/estimate?vin=5N1DR2CM4LC644987'

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:15.307Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrEstimate@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "estimate": {
      "status": "nothing-to-repair",
      "amountCents": 0,
      "currency": "USD"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "estimate": {
      "status": "nothing-to-repair",
      "amountCents": 0,
      "currency": "USD"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

Apply & book

order

pdr.order · POST /pdrs/order · gate offer · sandbox · answers PdrOrder@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) · /5N1DR2CM4LC644987 (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.

EmitsPdr.completed@1 · Pdr.dispatched@1 · Pdr.ordered@1 · ServiceOrder.settled@1.

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

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

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:15.343Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrOrder@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "order": {
      "operation": "order",
      "status": "nothing-to-repair",
      "amountCents": 0,
      "currency": "USD"
    },
    "payer": {
      "name": "Ava Good",
      "castRow": "super-prime",
      "creditTier": "super-prime"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "order": {
      "operation": "order",
      "status": "nothing-to-repair",
      "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

pdr.schedule · POST /pdrs/schedule · gate offer · sandbox · answers PdrSchedule@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) · /5N1DR2CM4LC644987 (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.

EmitsPdr.scheduleRequested@1 · Pdr.scheduled@1.

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

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

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:15.492Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrSchedule@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "appointment": {
      "status": "nothing-to-repair"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "appointment": {
      "status": "nothing-to-repair"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

Pay & settle

pay

pdr.pay · POST /pdrs/pay · gate offer · sandbox · answers PdrPay@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) · /5N1DR2CM4LC644987 (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.

EmitsPdr.paid@1 · Pdr.payFailed@1 · Pdr.payRequested@1.

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

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

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:15.347Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrPay@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "payment": {
      "status": "nothing-billed",
      "amountCents": 0,
      "currency": "USD"
    },
    "payer": {
      "name": "Ava Good",
      "castRow": "super-prime",
      "creditTier": "super-prime"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "payment": {
      "status": "nothing-billed",
      "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
  }
}

insuranceBill

pdr.insuranceBill · POST /pdrs/insurance-bill · gate offer · sandbox · answers PdrInsuranceBill@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) · /5N1DR2CM4LC644987 (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.

EmitsPdr.insuranceBillRequested@1 · Pdr.insuranceBilled@1.

the SDK — pdr.insuranceBill
import { pdr } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await pdr.insuranceBill({"vin":"5N1DR2CM4LC644987"})
POST /pdrs/insurance-bill
curl -X POST https://apis.vin/pdrs/insurance-bill \
  -H 'content-type: application/json' \
  -d '{"vin":"5N1DR2CM4LC644987"}'

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:15.315Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrInsuranceBill@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "bill": {
      "status": "nothing-to-repair",
      "amountCents": 0,
      "currency": "USD"
    },
    "payer": {
      "name": "Ava Good",
      "castRow": "super-prime",
      "creditTier": "super-prime"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "bill": {
      "status": "nothing-to-repair",
      "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

perform

pdr.perform · POST /pdrs/perform · gate offer · sandbox · answers PdrPerform@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) · /5N1DR2CM4LC644987 (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.

EmitsPdr.performFailed@1 · Pdr.performRequested@1 · Pdr.performed@1.

the SDK — pdr.perform
import { pdr } from 'apis.vin'

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

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:15.361Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrPerform@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "work": {
      "operation": "perform",
      "status": "nothing-to-repair"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "work": {
      "operation": "perform",
      "status": "nothing-to-repair"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

complete

pdr.complete · POST /pdrs/complete · gate offer · sandbox · answers PdrComplete@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) · /5N1DR2CM4LC644987 (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.

EmitsPdr.completeRequested@1 · Pdr.completed@1.

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

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

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:15.301Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrComplete@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "work": {
      "operation": "complete",
      "status": "nothing-to-repair"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "work": {
      "operation": "complete",
      "status": "nothing-to-repair"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

hailRepair

pdr.hailRepair · POST /pdrs/hail-repair · gate offer · sandbox · answers PdrHailRepair@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) · /5N1DR2CM4LC644987 (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.

EmitsPdr.hailRepairFailed@1 · Pdr.hailRepairRequested@1 · Pdr.hailRepaired@1.

the SDK — pdr.hailRepair
import { pdr } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await pdr.hailRepair({"vin":"5N1DR2CM4LC644987"})
POST /pdrs/hail-repair
curl -X POST https://apis.vin/pdrs/hail-repair \
  -H 'content-type: application/json' \
  -d '{"vin":"5N1DR2CM4LC644987"}'

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:15.307Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrHailRepair@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "work": {
      "operation": "hailRepair",
      "status": "nothing-to-repair"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "work": {
      "operation": "hailRepair",
      "status": "nothing-to-repair"
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

More actions

countDents

pdr.countDents · GET /pdrs/count-dents · gate key · sandbox · answers PdrCountDents@1

FieldTypeRequiredNotes
vinstringno

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

EmitsPdr.dentsCounted@1.

the SDK — pdr.countDents
import { pdr } from 'apis.vin'

// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await pdr.countDents({"vin":"5N1DR2CM4LC644987"})
GET /pdrs/count-dents
curl 'https://apis.vin/pdrs/count-dents?vin=5N1DR2CM4LC644987'

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:15.302Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrCountDents@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "count": {
      "dents": 0,
      "panels": 0,
      "basis": "damage-map",
      "consistentWithGrade": true
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "count": {
      "dents": 0,
      "panels": 0,
      "basis": "damage-map",
      "consistentWithGrade": true
    }
  },
  "provenance": {
    "simulated": true,
    "environment": "sandbox",
    "source": "showroom-polish-sandbox"
  },
  "events": [],
  "meter": {
    "charged": "0.00",
    "posted": false
  }
}

push

pdr.push · POST /pdrs/push · gate offer · sandbox · answers PdrPush@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) · /5N1DR2CM4LC644987 (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.

EmitsPdr.pushRequested@1 · Pdr.pushed@1.

the SDK — pdr.push
import { pdr } from 'apis.vin'

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

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:15.492Z · HTTP 200
{
  "type": "OK",
  "answers": "PdrPush@1",
  "value": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "work": {
      "operation": "push",
      "status": "nothing-to-repair"
    }
  },
  "evidence": {
    "vin": "5N1DR2CM4LC644987",
    "noun": "pdr",
    "asOf": "2026-08-10",
    "work": {
      "operation": "push",
      "status": "nothing-to-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.