Skip to main content
GET
/
v2
/
workspaces
Get Workspaces
curl --request GET \
  --url https://api.studio.prisme.ai/v2/workspaces \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "dirty": true,
    "lastPush": {
      "createdAt": "<string>",
      "createdBy": "<string>",
      "version": "<string>",
      "repositoryId": "<string>"
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

page
number

Page number

limit
number

Page size

labels
string

Comma-separated labels list to filter on

name
string

Search by workspace name

slug
string

Search by workspace slug

email
string

Some admin email to filter on

sort
string

Sort by a specific field

ids
string

Comma-separated ids

Search for workspace in name, description and slug

owned
boolean

Filter only user owned workspaces

dirty
boolean

Filter only dirty workspaces (i.e not saved to a git repository)

Response

Success Response

id
string
name
string
dirty
boolean
lastPush
object