Skip to main content
GET
/
transcribe
/
workspace
Get all workspaces
curl --request GET \
  --url https://api.pawa-ai.com/v1/transcribe/workspace \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Workspaces fetched successfully",
  "data": [
    {
      "id": 5,
      "name": "My Workspace",
      "createdAt": "2026-02-23T08:00:00.000Z",
      "updatedAt": "2026-02-23T08:10:00.000Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.pawa-ai.com/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

Search workspace by name

Example:

"My Workspace"

page
number

Page number (starts from 1)

Example:

1

limit
number

Number of items per page

Example:

10

sortOrder
enum<string>

Sort order

Available options:
asc,
desc

Response

Workspaces fetched successfully

success
boolean
required
Example:

true

message
string
required
Example:

"Workspaces fetched successfully"

data
object[]
required