Skip to main content
GET
/
v2
/
studios
/
{studioId}
Get LLM Studio Data
curl --request GET \
  --url http://localhost:3000/api/v2/studios/{studioId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "workspaceId": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "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

studioId
string
required

Response

Studio details

id
string
required
name
string
required
workspaceId
string
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
I