Body shape
This endpoint provides a way to retrieve the list of body shapes used to define a measurement profile.
Get all body shapes
API Request
GET https://api.bespokify.com/v2/bodyShapes
Example response
[
{
"id": "posture",
"type": "string",
"enum": ["veryUpright", "upright", "regular", "curved", "veryCurved"],
"gender": ["male", "female"]
},
{
"id": "shoulderSlope",
"step": 1,
"type": "number",
"suffix": "°",
"default": 20,
"maximum": 29,
"minimum": 11,
"gender": ["male", "female"]
}
]
The data for body shapes comes in the same format as option types. Please refer to that page for more information on the response parameters and how they are represented on the front-end.