GET
/
v1
/
accounts
/
{account_id}
/
deployedModels
/
{deployed_model_id}
Get LoRA
curl --request GET \
  --url https://api.fireworks.ai/v1/accounts/{account_id}/deployedModels/{deployed_model_id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account_id
string
required

The Account Id

deployed_model_id
string
required

The Deployed Model Id

Query Parameters

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.

name
string
displayName
string
description
string

Description of the resource.

createTime
string<date-time>

The creation time of the resource.

model
string
deployment
string

The resource name of the base deployment the model is deployed to.

default
boolean

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.

state
enum<string>
default:STATE_UNSPECIFIED

The state of the deployed model.

Available options:
STATE_UNSPECIFIED,
UNDEPLOYING,
DEPLOYING,
DEPLOYED,
UPDATING
serverless
boolean
status
object

Contains model deploy/undeploy details.

public
boolean

If true, the deployed model will be publicly reachable.

updateTime
string<date-time>

The update time for the deployed model.