cURL
curl -X GET "https://api.fitsociety.io/public/v1/forms/{formId}" \
-H "Authorization: Bearer <access_token>"const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fitsociety.io/public/v1/forms/{formId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.fitsociety.io/public/v1/forms/{formId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"form": {
"formId": "<string>",
"name": "<string>",
"description": "<string>",
"formType": "<string>",
"sectionCount": 123,
"questionCount": 123,
"hasObjectives": true,
"hasMeasurements": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"sections": [
{
"sectionId": "<string>",
"title": "<string>",
"description": "<string>",
"questions": [
{
"questionId": "<string>",
"name": "<string>",
"type": "<string>",
"required": true,
"options": [
"<string>"
],
"linearScale": {
"startValue": 123,
"endValue": 123,
"startLabel": "<string>",
"endLabel": "<string>"
},
"ratingScale": 123,
"maxFiles": 123,
"order": 123
}
]
}
]
}
},
"meta": {
"requestId": "4f849d7d-f4f1-45cc-b4b7-3984a3d17f83",
"rateLimit": {
"limit": 10,
"remaining": 9,
"resetSeconds": 1,
"retryAfterSeconds": 1
}
}
}Forms (check-up & intake)
Get sanitized form detail
Requires forms:read. Returns form sections and questions, but excludes objectives, medical/nutrition blocks, media URLs, AI metadata, and raw model fields.
GET
/
public
/
v1
/
forms
/
{formId}
cURL
curl -X GET "https://api.fitsociety.io/public/v1/forms/{formId}" \
-H "Authorization: Bearer <access_token>"const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fitsociety.io/public/v1/forms/{formId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.fitsociety.io/public/v1/forms/{formId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"form": {
"formId": "<string>",
"name": "<string>",
"description": "<string>",
"formType": "<string>",
"sectionCount": 123,
"questionCount": 123,
"hasObjectives": true,
"hasMeasurements": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"sections": [
{
"sectionId": "<string>",
"title": "<string>",
"description": "<string>",
"questions": [
{
"questionId": "<string>",
"name": "<string>",
"type": "<string>",
"required": true,
"options": [
"<string>"
],
"linearScale": {
"startValue": 123,
"endValue": 123,
"startLabel": "<string>",
"endLabel": "<string>"
},
"ratingScale": 123,
"maxFiles": 123,
"order": 123
}
]
}
]
}
},
"meta": {
"requestId": "4f849d7d-f4f1-45cc-b4b7-3984a3d17f83",
"rateLimit": {
"limit": 10,
"remaining": 9,
"resetSeconds": 1,
"retryAfterSeconds": 1
}
}
}Authorizations
Public API access token issued by /public/v1/oauth/token. Example: Authorization: Bearer fspt_....
Path Parameters
Example:
"66f7b8b1e13c8d25f4d3d90a"
⌘I