v1
latestOpenAPI 3.0.1MIT2026-07-26104203277.0 KBList Secrets
Retrieves a paginated list of secrets for the specified project. Secret values are not included in the response.
get/v1/projects/secrets/list
Query parameters
takestring
Example:10
Number of secrets to return per page.
skipstring
Example:1
Page number for pagination.
searchstring
Example:API
Search term to filter secrets by name.
Response
Successful response
Example response
{
"success": true,
"message": "success",
"data": {
"secrets": [
{
"id": "ed9b5601-f731-441a-8500-d9fc7610ef8f",
"name": "API_KEY",
"description": "Production API key",
"tags": [
"production",
"api"
],
"createdAt": "2024-12-15T00:00:00.000Z",
"updatedAt": "2024-12-15T00:00:00.000Z"
}
],
"total": 100,
"filtered": 10
}
}