Skip to main content
GET
/
v1
/
accounts
/
{account_id}
/
secrets
cURL
curl --request GET \
  --url https://api.fireworks.ai/v1/accounts/{account_id}/secrets \
  --header 'Authorization: Bearer <token>'
{
  "secrets": [
    {
      "name": "<string>",
      "keyName": "<string>",
      "value": "<string>"
    }
  ],
  "nextPageToken": "<string>",
  "totalSize": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>

Path Parameters

account_id
string
required

The Account Id

Query Parameters

pageSize
integer
pageToken
string
filter
string

Unused but required to use existing ListRequest functionality.

orderBy
string

Unused but required to use existing ListRequest functionality.

readMask
string

The fields to be returned in the response. If empty or "*", all fields will be returned.

Response

200 - application/json

A successful response.

secrets
object[]
nextPageToken
string
totalSize
integer

The total number of secrets.