List submissions
GET
List submissions
Authorizations
API key authentication. Use Authorization: Bearer thub_xxxxx
Headers
API key token (e.g., Bearer thub_abc123)
Query Parameters
Page number
Items per page
Workspace ID
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://{defaultHost}/api/v1/submissions \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"taxonomy_id": "<string>",
"status": "<string>",
"taxonomy_name": "<string>"
}
],
"has_more": true,
"total_count": 123
}API key authentication. Use Authorization: Bearer thub_xxxxx
API key token (e.g., Bearer thub_abc123)
Page number
Items per page
Workspace ID
curl --request GET \
--url https://{defaultHost}/api/v1/submissions \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"taxonomy_id": "<string>",
"status": "<string>",
"taxonomy_name": "<string>"
}
],
"has_more": true,
"total_count": 123
}