GHL & GenerationList GoHighLevel funnels

List GoHighLevel funnels

List funnels for the resolved location's linked GoHighLevel account. The client's ghl_location_id and proxy_api_key (stored on the location record) are used to authenticate against the GHL Funnels API. The GHL response is returned verbatim. Agency keys (ak_) must pass ?location_id=.

curl -X GET "https://mythic-analytics.gulp.workers.dev/builder/ghl/funnels?location_id=acme-retail&limit=50&offset=0" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "funnels": [
    {
      "_id": "example_string",
      "name": "Product Launch Funnel",
      "steps": [
        {
          "id": "example_string",
          "name": "John Doe",
          "url": "example_string",
          "sequence": 42
        }
      ]
    }
  ],
  "count": 5
}
GET
/ghl/funnels
GET
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token
Bearer Tokenstring
Required

Builder key as a bearer token. Use an agency key (Bearer ak_...) or a viewer key (Bearer sk_...). Scoped keys (mcp_) are not accepted here (403 not_available_to_scoped_keys).

Builder key as a bearer token. Use an agency key (Bearer ak_...) or a viewer key (Bearer sk_...). Scoped keys (mcp_) are not accepted here (403 not_available_to_scoped_keys).
query
location_idstring

Client location to scope the request to. Required when authenticating with an agency key (ak_). Ignored for viewer keys (sk_). This is the Mythic location ID, not the GoHighLevel location ID.

query
limitstring

Maximum funnels to return. Default 50.

query
offsetstring

Number of funnels to skip. Default 0.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token. Builder key as a bearer token. Use an agency key (Bearer ak_...) or a viewer key (Bearer sk_...). Scoped keys (mcp_) are not accepted here (403 not_available_to_scoped_keys).

Query Parameters

location_idstring

Client location to scope the request to. Required when authenticating with an agency key (ak_). Ignored for viewer keys (sk_). This is the Mythic location ID, not the GoHighLevel location ID.

Example:
acme-retail
limitstring

Maximum funnels to return. Default 50.

offsetstring

Number of funnels to skip. Default 0.

Responses

funnelsarray
countinteger