curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/users/{user_id}/apiKeys \
--header 'Authorization: Bearer <token>'{
"apiKeys": [
{
"keyId": "<string>",
"displayName": "<string>",
"key": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"secure": true,
"email": "<string>",
"prefix": "<string>",
"expireTime": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/users/{user_id}/apiKeys \
--header 'Authorization: Bearer <token>'{
"apiKeys": [
{
"keyId": "<string>",
"displayName": "<string>",
"key": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"secure": true,
"email": "<string>",
"prefix": "<string>",
"expireTime": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
Number of API keys to return in the response. Pagination support to be added.
Token for fetching the next page of results. Pagination support to be added.
Field for filtering results.
Field for ordering results.
The fields to be returned in the response. If empty or "*", all fields will be returned.
A successful response.
List of API keys retrieved.
Show child attributes
Unique identifier (Key ID) for the API key, used primarily for deletion.
Display name for the API key, defaults to "default" if not specified.
The actual API key value, only available upon creation and not stored thereafter.
Timestamp indicating when the API key was created.
Indicates whether the plaintext value of the API key is unknown to Fireworks. If true, Fireworks does not know this API key's plaintext value. If false, Fireworks does know the plaintext value.
Email of the user who owns this API key.
Timestamp indicating when the API key will expire. If not set, the key never expires.
The total number of API keys.
Was this page helpful?