Transcript LOL API
GET
/spaces

List workspaces

List all workspaces the current user has access to.

/spaces

The Authorization access token

Authorization

x-api-key<token>

In: header

curl -X GET "https://transcript.lol/api/v1/spaces" \
  -H "Authorization: <token>"

List of workspaces

[
  {
    "findAndReplaceWords": [
      {
        "find": "string",
        "replace": "string"
      }
    ],
    "id": "string",
    "createdAt": "string",
    "updatedAt": "string",
    "name": "string",
    "language": "bg",
    "templateId": "string",
    "ownerId": "string",
    "_count": {
      "recordings": 0,
      "speakers": 0
    },
    "privacy": "PRIVATE"
  }
]