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
| Parameter | Type | Description |
|---|---|---|
| id | string | The unique internal ID for the transcript. |
| slug | string | The unique slug used in the URL. |
| name | string | The display name of the transcript. |
| createdAt | number | The unix timestamp (ms) when the transcript was created. |
| url | string | The primary public hosted URL for the transcript based on your project settings. |
| urls | object | An object containing all possible access URLs (main, shorthand, custom, direct, etc.). |
| isProtected | boolean | Whether password protection is enabled for this transcript. |
| password | string | The transcript password (if protected). |
| requiredRoles | array | The Discord roles required to view this transcript. |
| pathPrefix | string | The 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"
}
]