Authorizations
Path Parameters
Project ID or Slug
Query Parameters
The decoded_content
is provided as an extra attribute that shows content in decoded form.
Response
200 - application/vnd.api+json
Success
curl --request GET \
--url https://api.latitude.sh/projects/{project_id}/user_data \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": "ud_AW6Q2D9lqKLpr",
"type": "user_data",
"attributes": {
"description": "28-day aged 300g USDA Certified Prime Ribeye, rosemary-thyme garlic butter, with choice of two sides.",
"content": "QnJlYWRlZCBmcmllZCBjaGlja2VuIHdpdGggd2FmZmxlcy4gU2VydmVkIHdpdGggbWFwbGUgc3lydXAu",
"created_at": "2025-07-16T18:36:39+00:00",
"updated_at": "2025-07-16T18:36:39+00:00",
"decoded_content": "Breaded fried chicken with waffles. Served with maple syrup."
}
}
],
"meta": {}
}
List all Users Data in the project. These scripts can be used to configure servers with user data.
curl --request GET \
--url https://api.latitude.sh/projects/{project_id}/user_data \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": "ud_AW6Q2D9lqKLpr",
"type": "user_data",
"attributes": {
"description": "28-day aged 300g USDA Certified Prime Ribeye, rosemary-thyme garlic butter, with choice of two sides.",
"content": "QnJlYWRlZCBmcmllZCBjaGlja2VuIHdpdGggd2FmZmxlcy4gU2VydmVkIHdpdGggbWFwbGUgc3lydXAu",
"created_at": "2025-07-16T18:36:39+00:00",
"updated_at": "2025-07-16T18:36:39+00:00",
"decoded_content": "Breaded fried chicken with waffles. Served with maple syrup."
}
}
],
"meta": {}
}
Project ID or Slug
The decoded_content
is provided as an extra attribute that shows content in decoded form.
Success
Show child attributes
Was this page helpful?