get
https://api-v2.pandavideo.com.br/comparison
Returns a list of all A/B tests associated with the authenticated parent account.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
GET /comparison
Lists all A/B tests owned by the authenticated user.
AuthorizationRequires a valid API Key in the
Authorizationheader. Send the key directly — noBearerprefix.
HTTP Method & Path
GET /comparison
Base URL: https://api-v2.pandavideo.com.br
Trailing slash optional. The Panda dashboard callsGET /comparison/with a trailing slash; both forms reach the same handler.
Authentication Requirements
| Header | Value |
|---|---|
Authorization | <your-api-key> (no Bearer prefix) |
Response
Success Response (200)
{
"comparisons": [
{
"id": "636f6d70-e29b-41d4-a716-446655440000",
"name": "Thumb test — Q1",
"description": "Comparing 2 thumbnails for the welcome video.",
"status": "IN_PROGRESS",
"user_id": "11111111-2222-3333-4444-555555555555",
"winner_video_id": null,
"started_at": "2025-01-15T10:00:00.000Z",
"ended_at": null,
"created_at": "2025-01-15T09:30:00.000Z",
"updated_at": "2025-01-15T10:00:00.000Z"
}
],
"pullzone": "myzone"
}Response Schema
| Field | Type | Description |
|---|---|---|
comparisons[] | array | Raw comparison rows (no nested videos at this level — use Get A/B Tests Properties for the variant list). |
comparisons[].id | string | Comparison id — always starts with 636f6d70-. |
comparisons[].name / description | string | Author‑supplied metadata. |
comparisons[].status | string | DRAFT | IN_PROGRESS | COMPLETED. |
comparisons[].winner_video_id | string | null | Set only when the test is COMPLETED. |
comparisons[].started_at / ended_at | string (ISO date‑time) | null | Lifecycle timestamps. |
pullzone | string | User CDN pullzone, useful to build player URLs. |
Error Responses
- 401 — missing/invalid API Key.
- 500 —
"Library not found"when the user has no CDN library; any other internal error.
Example Usage
cURL
curl --request GET \
--url 'https://api-v2.pandavideo.com.br/comparison' \
--header 'Authorization: <your-api-key>'