---
title: "Get a specific feed by ID"
method: GET
path: "/feeds/{id}"
tags: ["Feeds"]
---

# Get a specific feed by ID

`GET /feeds/{id}`

Retrieves a specific feed by its ID.
Public feeds are accessible without authentication.
Private feeds require appropriate token validation.

## Path parameters

- `id` integer, required

## Response `200`

Feed details

- Feed
  - `id` integer — Unique identifier for the feed
  - `name` string — Name of the feed
  - `token` string — Client token (null for public feeds)
  - `feedTypeId` integer — Type of feed (1 for X/Twitter, 2 for Reddit, 3 for YouTube channel, 4 for RSS, 5 for X News topic)
  - `internalId` string — Internal identifier for the feed source (username for X, subreddit for Reddit, channel source ID for YouTube)
  - `createdOn` string, date-time — Creation timestamp

## Other responses

- `400` — Bad request - Invalid feed ID
- `404` — Feed not found
- `500` — Internal server error

---

[API](https://skmtc.net/autocontentapi/apis/content-api.md) · [All operations](https://skmtc.net/autocontentapi/apis/content-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/autocontentapi/content-api/revisions/355890b6b4cc/schema)
