---
title: "Get Custom Feed Details"
method: GET
path: "/v1/web-visits/custom-feeds/{custom_feed_id}"
tags: ["Web Visits", "v1"]
---

# Get Custom Feed Details

`GET /v1/web-visits/custom-feeds/{custom_feed_id}`

Retrieve a single custom feed by its ID.

:::info
Requires the `web_visits:read` OAuth2 scope.
:::

## Path parameters

- `custom_feed_id` string, required

## Query parameters

- `account_id` string, required
- `include` 'folder'

## Response `200`

Success

- object
  - `data` CustomFeedV1, required
    - `type` 'custom_feed', required — The type of the object
    - `id` string, required — The unique identifier for the custom feed.
    - `attributes` object, required
      - `name` string, required — Name of the custom feed.
      - `created_at` string, date-time, required — Datetime when the custom feed was created.
      - `updated_at` string, date-time, required — Datetime when the custom feed was last updated.
      - `deletable` boolean, required — Whether this custom feed can be deleted.
      - `viewable` boolean, required — Whether this custom feed can be viewed.
      - `notifications` union[], required — Notification subscriptions configured for this custom feed.
        - union
          - object
            - `sending_interval` 'day' | 'week', required — How often the notification is sent.
            - `medium` 'email' | 'slack', required — The delivery channel for the notification.
            - `user_id` integer, required — The Leadfeeder user ID of the subscribed user.
          - object
            - `sending_interval` 'day' | 'week', required — How often the notification is sent.
            - `medium` 'email' | 'slack', required — The delivery channel for the notification.
            - `email` string, required — Email address of the subscriber.
      - `advanced_filters` object, nullable — Advanced filters configuration for the custom feed. Returns null if no filters are configured.
        - `type` 'group', required — The filter type
        - `operator` 'and' | 'or', required — The logical operator to apply to items
        - `items` union[] — List of filter groups or conditions
          - union
            - object
              - …
            - object
              - …
    - `relationships` object, required
      - `created_by` object, nullable, required — The user who originally created the custom feed.
        - `id` string, required — The Leadfeeder user ID.
        - `type` string, required
      - `folder` object, nullable
        - `id` string, required — The ID of the folder.
        - `type` string, required
  - `meta` object, required
    - `request_id` string, required — A unique identifier assigned to each API request for end-to-end traceability.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized. The request was rejected because the credentials are missing, invalid, expired, or have been revoked. The client must re-authenticate before retrying. Clients can differentiate via the `code` value of the first item in `errors`.
- `403` — Forbidden. The credentials are valid but the caller is not authorized to perform the request — typically because the user lacks the required permission, the OAuth scope is insufficient, the subscription plan does not include the required entitlement, the `account_id` does not belong to the authenticated user, or the target list is read-only and its members cannot be modified. Clients can differentiate via the `code` value of the first item in `errors`.
- `404` — Not found
- `429` — Too many requests. Either the per-second rate limit or the monthly quota configured for the API key / OAuth application has been exceeded. Clients can differentiate via the `code` value of the first item in `errors`.
- `500` — Internal server error
- `504` — Server timeout

---

[API](https://skmtc.net/leadfeeder/apis/leadfeeder-public-api.md) · [All operations](https://skmtc.net/leadfeeder/apis/leadfeeder-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/leadfeeder/leadfeeder-public-api/versions/e494ac05e206/schema)
