List Transcripts

Retrieve all transcripts associated with your project. Returns all records — no pagination.

GET
https://bgplus.robbiee.com/api/v1/list

Headers

x-api-token: your_api_token

No request body required for this method.

Response Body

ParameterTypeDescription
idstringThe unique internal ID for the transcript.
slugstringThe unique slug used in the URL.
namestringThe display name of the transcript.
createdAtnumberThe unix timestamp (ms) when the transcript was created.
urlstringThe primary public hosted URL for the transcript based on your project settings.
urlsobjectAn object containing all possible access URLs (main, shorthand, custom, direct, etc.).
isProtectedbooleanWhether password protection is enabled for this transcript.
passwordstringThe transcript password (if protected).
requiredRolesarrayThe Discord roles required to view this transcript.
pathPrefixstringThe processed path prefix used for the transcript's URLs.

Example Response

json
[
  {
    "id": "j57abc123...",
    "slug": "general-chat-123",
    "name": "General Chat",
    "createdAt": 1708213200000,
    "url": "https://test.bgplus.robbiee.com/general-chat-123",
    "urls": {
      "main": "https://bgplus.robbiee.com/72280428/general-chat-123",
      "shorthand": "https://bgpl.us/72280428/general-chat-123",
      "subdomain": "https://test.bgplus.robbiee.com/general-chat-123",
      "shorthandSubdomain": "https://test.bgpl.us/general-chat-123",
      "direct": "https://bgplus.robbiee.com/general-chat-123"
    },
    "isProtected": true,
    "password": "example_password",
    "requiredRoles": ["123456789012345678"],
    "pathPrefix": "test-project/2026-02-26"
  }
]