Reconstitution math for one vial and one target dose
Reconstitution math for one vial and one target dose: the strength to reconstitute to, the bacteriostatic water to add, what one dose reads on a U-100 syringe, whole doses per vial, residual mass and cost per dose. Deterministic arithmetic -- not medical advice, not a prescription, and for relay to a human decision-maker rather than autonomous administration.
Answeringour last check, 2026-09-25
1 of 1checks answered this week
46 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.doseplot.com/v1/recon/plan
| Category | Everything else |
|---|---|
| Provider host | api.doseplot.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-25 | valid payment request | 402 | $0.01 | 46 ms |
Example input (from the provider)
{
"body": {
"draw_ml": 0.25,
"frequency_days": 1,
"target_dose_mcg": 250,
"vial_mg": 10
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"description": "Exactly one target-dose field must be present. UNKNOWN FIELDS ARE REJECTED.",
"oneOf": [
{
"required": [
"target_dose_mg"
]
},
{
"required": [
"target_dose_mcg"
]
}
],
"properties": {
"cost_usd": {
"description": "Vial cost. Omitted, cost_per_dose_usd is null.",
"minimum": 0,
"type": "number"
},
"draw_ml": {
"description": "The volume you want to DRAW for one dose, in mL -- not the vial fill. The fill needed to make that true comes back as bac_water_ml.",
"maximum": 10,
"minimum": 0.01,
"type": "number"
},
"frequency_days": {
"default": 1,
"description": "Days between doses. Feeds days_per_vial only.",
"exclusiveMinimum": 0,
"type": "number"
},
"target_dose_mcg": {
"description": "Target dose, mcg.",
"exclusiveMinimum": 0,
"type": "number"
},
"target_dose_mg": {
"description": "Target dose, mg.",
"exclusiveMinimum": 0,
"type": "number"
},
"vial_mg": {
"description": "Total mass in the vial, mg.",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"vial_mg",
"draw_ml"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}