List user playlists

Retrieves all playlists for the authenticated user

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

GET /playlists

Lists all playlists owned by the authenticated user, including a derived thumbnail for the first video.

📘

Authorization

Requires a valid API Key in the Authorization header. Send the key directly — no Bearer prefix.

HTTP Method & Path

GET /playlists

Base URL: https://api-v2.pandavideo.com.br

Response

Success Response (200)

Returns an array of playlists (not wrapped in a data envelope).

[
  {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "user_id": "11111111-2222-3333-4444-555555555555",
    "name": "Onboarding Series",
    "duration": 4520,
    "videos_quantity": 6,
    "updated_at": "2025-01-15T10:00:00.000Z",
    "access_type": "anyone_with_link",
    "image_url": null,
    "first_thumbnail": "https://b-myzone.tv.pandavideo.com.br/abc123/thumbnail.jpg"
  }
]

Response Schema

FieldTypeDescription
idstring (uuid)Playlist identifier.
user_idstring (uuid)Owner user.
namestringPlaylist display name.
durationintegerTotal duration across all videos in seconds.
videos_quantityintegerNumber of videos currently linked.
updated_atstring (ISO date‑time)Last update.
access_typestringanyone_with_link | anyone_with_password.
image_urlstring | nullCustom logo URL (when set).
first_thumbnailstring | nullDerived thumbnail of the first video: config.thumb if present, else https://b-{pullzone}.tv.pandavideo.com.br/{external_id}/thumbnail.jpg.
📘

Password never returned. Playlists with anyone_with_password access do not include their password in this response — it is encrypted on the server.

Error Responses

  • 401 — missing/invalid API Key.
  • 500 — internal error.

Example Usage

cURL

curl --request GET \
  --url 'https://api-v2.pandavideo.com.br/playlists' \
  --header 'Authorization: <your-api-key>'

Recipes

Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json