List organization funnels

Retrieves all funnels for the authenticated user's organization

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

GET /funnels/get_all

Lists all funnels owned by the authenticated user's organization, with a video count for each.

📘

Authorization

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

HTTP Method & Path

GET /funnels/get_all

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

Authentication Requirements

HeaderValue
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

FieldTypeDescription
data[]arrayFunnel summaries. Empty array when the organization has no funnels yet.
data[].idstring (uuid)Funnel identifier.
data[].namestringFunnel display name.
data[].organization_idstring (uuid)Owning organization.
data[].folder_idstring (uuid) | nullLinked Panda Folder.
data[].videos_countintegerNumber of videos currently in the funnel.
data[].created_atstring (ISO date‑time) | nullWhen 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>'

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