Web Visits
v1
Retrieve Custom Feeds Folders
Retrieve all custom feed folders accessible to the current user for the given account.
:::info Requires the web_visits:read OAuth2 scope. :::
get/v1/web-visits/custom-feeds-folders
Query parameters
account_idstring required
The Leadfeeder Account ID. The Account ID can be retrieved using the List Accounts endpoint.
include'custom_feeds'
Specify which additional data should be attached to the result.
Response
Success
Example response
{
"data": [
{
"type": "custom_feed_folder",
"id": "42",
"attributes": {
"name": "Marketing Feeds",
"preset_folder": "High-Intent Pages",
"created_at": "2026-01-10T08:00:00.000Z",
"updated_at": "2026-01-15T12:00:00.000Z"
},
"relationships": {
"custom_feeds": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"type": "custom_feed"
}
]
}
}
],
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}