curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/deployedModels \
--header 'Authorization: Bearer <token>'{
"deployedModels": [
{
"name": "<string>",
"displayName": "<string>",
"description": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"model": "<string>",
"deployment": "<string>",
"default": true,
"state": "STATE_UNSPECIFIED",
"serverless": true,
"status": {
"code": "OK",
"message": "<string>"
},
"public": true,
"updateTime": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/deployedModels \
--header 'Authorization: Bearer <token>'{
"deployedModels": [
{
"name": "<string>",
"displayName": "<string>",
"description": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"model": "<string>",
"deployment": "<string>",
"default": true,
"state": "STATE_UNSPECIFIED",
"serverless": true,
"status": {
"code": "OK",
"message": "<string>"
},
"public": true,
"updateTime": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
The Account Id
The maximum number of deployed models to return. The maximum page_size is 200, values above 200 will be coerced to 200. If unspecified, the default is 50.
A page token, received from a previous ListDeployedModels call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListDeployedModels must match the call that provided the page token.
Only depoyed models satisfying the provided filter (if specified) will be returned. See https://google.aip.dev/160 for the filter grammar.
A comma-separated list of fields to order by. e.g. "foo,bar" The default sort order is ascending. To specify a descending order for a field, append a " desc" suffix. e.g. "foo desc,bar" Subfields are specified with a "." character. e.g. "foo.bar" If not specified, the default order is by "name".
The fields to be returned in the response. If empty or "*", all fields will be returned.
A successful response.
Show child attributes
Description of the resource.
The creation time of the resource.
The resource name of the base deployment the model is deployed to.
If true, this is the default target when querying this model without
the #<deployment> suffix.
The first deployment a model is deployed to will have this field set to true.
The state of the deployed model.
STATE_UNSPECIFIED, UNDEPLOYING, DEPLOYING, DEPLOYED, UPDATING Contains model deploy/undeploy details.
Show child attributes
The status code.
OK, CANCELLED, UNKNOWN, INVALID_ARGUMENT, DEADLINE_EXCEEDED, NOT_FOUND, ALREADY_EXISTS, PERMISSION_DENIED, UNAUTHENTICATED, RESOURCE_EXHAUSTED, FAILED_PRECONDITION, ABORTED, OUT_OF_RANGE, UNIMPLEMENTED, INTERNAL, UNAVAILABLE, DATA_LOSS A developer-facing error message in English.
If true, the deployed model will be publicly reachable.
The update time for the deployed model.
A token, which can be sent as page_token to retrieve the next page.
If this field is omitted, there are no subsequent pages.
Was this page helpful?