Calculators
Sprint story-point capacity API
Compute a sprint's story-point capacity — capacity = teamSize × daysPerSprint × hoursPerDay × focusFactor / hoursPerPoint — where focusFactor (0-1, ~0.7 typical) discounts for meetings and interruptions. Answers 'how many points can we commit this sprint','team capacity in story points','available hours after focus factor'.
Price$0.01per request
MethodPOST
Route/v1/calc/pm-story-point-capacity
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcpmagilecapacitystory-pointssprintscrumplanning
API URL
Integration docshttps://x402.hexl.dev/v1/calc/pm-story-point-capacityExample request
{
"teamSize": 5,
"daysPerSprint": 10,
"hoursPerDay": 8,
"focusFactor": 0.7,
"hoursPerPoint": 6
}Example response
{
"teamSize": 5,
"daysPerSprint": 10,
"hoursPerDay": 8,
"focusFactor": 0.7,
"hoursPerPoint": 6,
"availableHours": 280,
"capacityPoints": 46.7,
"formula": "capacity = teamSize × days × hoursPerDay × focusFactor / hoursPerPoint"
}Input schema
{
"type": "object",
"required": [
"teamSize",
"daysPerSprint",
"hoursPerPoint"
],
"properties": {
"teamSize": {
"type": "number",
"examples": [
5
]
},
"daysPerSprint": {
"type": "number",
"examples": [
10
]
},
"hoursPerDay": {
"type": "number",
"default": 8,
"examples": [
8
]
},
"focusFactor": {
"type": "number",
"description": "0-1, fraction of time on sprint work",
"default": 0.7,
"examples": [
0.7
]
},
"hoursPerPoint": {
"type": "number",
"description": "Hours of effort per story point",
"examples": [
6
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}