get
https://api-v2.pandavideo.com.br/funnels/get_all
Retrieves all funnels for the authenticated user's organization
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
GET /funnels/get_all
Lists all funnels owned by the authenticated user's organization, with a video count for each.
AuthorizationRequires a valid API Key in the
Authorizationheader. Send the key directly — noBearerprefix.
HTTP Method & Path
GET /funnels/get_all
Base URL: https://api-v2.pandavideo.com.br
Authentication Requirements
| Header | Value |
|---|---|
Authorization | <your-api-key> (no Bearer prefix) |
Response
Success Response (200)
{
"message": "Funnels found",
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Sales Funnel Q1",
"organization_id": "11111111-2222-3333-4444-555555555555",
"folder_id": "99999999-8888-7777-6666-555555555555",
"videos_count": 5,
"created_at": "2025-01-15T10:00:00.000Z"
}
]
}Response Schema
| Field | Type | Description |
|---|---|---|
data[] | array | Funnel summaries. Empty array when the organization has no funnels yet. |
data[].id | string (uuid) | Funnel identifier. |
data[].name | string | Funnel display name. |
data[].organization_id | string (uuid) | Owning organization. |
data[].folder_id | string (uuid) | null | Linked Panda Folder. |
data[].videos_count | integer | Number of videos currently in the funnel. |
data[].created_at | string (ISO date‑time) | null | When the funnel was created. |
Error Responses
- 401 — missing/invalid API Key.
- 500 — internal error (user/organization lookup failure).
Example Usage
cURL
curl --request GET \
--url 'https://api-v2.pandavideo.com.br/funnels/get_all' \
--header 'Authorization: <your-api-key>'