curl -X GET https://api.together.ai/v1/deployments/secrets \
-H "Authorization: Bearer $TOGETHER_API_KEY"{
"data": [
{
"created_at": "<string>",
"created_by": "<string>",
"description": "<string>",
"id": "<string>",
"last_updated_by": "<string>",
"name": "<string>",
"object": "<string>",
"updated_at": "<string>"
}
],
"object": "<string>"
}Retrieve all secrets in your project
curl -X GET https://api.together.ai/v1/deployments/secrets \
-H "Authorization: Bearer $TOGETHER_API_KEY"{
"data": [
{
"created_at": "<string>",
"created_by": "<string>",
"description": "<string>",
"id": "<string>",
"last_updated_by": "<string>",
"name": "<string>",
"object": "<string>",
"updated_at": "<string>"
}
],
"object": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?