Retrieve builds for a static host
Authentication: required
curl --request GET \
--url https://your-xano-instance.xano.io/api:meta/workspace/{workspace_id}/static_host/{static_host}/build \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": 123,
"created_at": "<string>",
"updated_at": "<string>",
"name": "<string>",
"description": "<string>",
"canonical": "<string>",
"file_count": 123,
"file_bytes": 123,
"original": "<string>",
"type": "<string>",
"status": "pending",
"log": "<string>",
"static_host": {
"id": 123
},
"user": {
"id": 123
}
}
],
"itemsReceived": 123,
"curPage": 123,
"nextPage": 123,
"prevPage": 123,
"offset": 123,
"perPage": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?
curl --request GET \
--url https://your-xano-instance.xano.io/api:meta/workspace/{workspace_id}/static_host/{static_host}/build \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": 123,
"created_at": "<string>",
"updated_at": "<string>",
"name": "<string>",
"description": "<string>",
"canonical": "<string>",
"file_count": 123,
"file_bytes": 123,
"original": "<string>",
"type": "<string>",
"status": "pending",
"log": "<string>",
"static_host": {
"id": 123
},
"user": {
"id": 123
}
}
],
"itemsReceived": 123,
"curPage": 123,
"nextPage": 123,
"prevPage": 123,
"offset": 123,
"perPage": 123
}