Endpoint Examples
Get Silo List
Endpoint Examples
Get Silo List
API endpoint to list all user silos with pagination.
GET
/
api
/
v1
/
manage
/
silos
curl --request GET \
--url https://api.jsonsilo.com/api/v1/manage/silos \
--header 'X-MAN-API: <api-key>'
{
"metadata": {
"total_items": 1,
"per_page": 25,
"page_no": 1
},
"silos": [
{
"file_name": "new db",
"file_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2024-12-07T12:52:28.094450+00:00",
"updated_at": "2024-12-07T12:52:28.094450+00:00",
"is_public": false,
"region_name": "api"
}
]
}
Authorizations
The JSONSilo Manage API Key
Query Parameters
The page number to retrieve
Response
200
application/json
Successful Response
Silo name. The silo name will not affect development or any sensitive aspects.
Example:
"new db"
The Silo UUID, comprising 32 hexadecimal digits separated by 4 hyphens, totaling 36 characters.
The date and time the silo was created in UTC
.
Example:
"2024-12-07T12:52:28.094450+00:00"
The date and time the silo was last updated in UTC
.
Example:
"2024-12-07T12:52:28.094450+00:00"
Silo access mode. If true
, the silo is public; if false
, the silo is private.
Example:
false
The region where your data will be stored.
Example:
"api"
curl --request GET \
--url https://api.jsonsilo.com/api/v1/manage/silos \
--header 'X-MAN-API: <api-key>'
{
"metadata": {
"total_items": 1,
"per_page": 25,
"page_no": 1
},
"silos": [
{
"file_name": "new db",
"file_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2024-12-07T12:52:28.094450+00:00",
"updated_at": "2024-12-07T12:52:28.094450+00:00",
"is_public": false,
"region_name": "api"
}
]
}