Skip to content
Eden Engine

YouTube Channel Video List (by Channel ID)

omnial/youtube-web-get-channel-videos

Given a YouTube channel ID, returns the channel's public profile (name, description, keywords, verification/family-safe status) and its recently uploaded videos, each with title, duration, view count, publish time, and thumbnail links. Also returns a continuation token for fetching the next page of videos.

activeper callv1
Provider
Web & Business Data Network
Category
youtube
Provider price
$0.0020475 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "channel_id"
  ],
  "properties": {
    "channel_id": {
      "type": "string",
      "examples": [
        "UCJHBJ7F-nAIlMGolm0Hu4vg"
      ],
      "description": "Channel ID"
    },
    "need_format": {
      "type": "boolean",
      "default": true,
      "description": "Whether to clean and format the data"
    },
    "country_code": {
      "type": "string",
      "default": "US",
      "examples": [
        "US"
      ],
      "description": "Country code"
    },
    "language_code": {
      "type": "string",
      "default": "zh-CN",
      "examples": [
        "zh-CN"
      ],
      "description": "Language code"
    },
    "continuation_token": {
      "type": "string",
      "description": "Pagination token for next page"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "videos": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "is_live": {
            "type": "boolean"
          },
          "duration": {
            "type": "string",
            "description": "e.g. '3:19', '1:18:33'."
          },
          "video_id": {
            "type": "string"
          },
          "thumbnails": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "width": {
                  "type": "number"
                },
                "height": {
                  "type": "number"
                }
              },
              "additionalProperties": true
            },
            "description": "Thumbnail images at different sizes."
          },
          "view_count": {
            "type": "string",
            "description": "Human-readable, localized view count, e.g. '60K views' or '1.6万次观看'. Not a raw number."
          },
          "description": {
            "type": "string",
            "description": "The video's own description text. Observed empty on every video in both fixtures."
          },
          "is_verified": {
            "type": "boolean"
          },
          "published_time": {
            "type": "string",
            "description": "Human-readable relative publish time, e.g. '5 days ago'. Observed as an empty string on one video in one fixture, so treat as possibly blank."
          },
          "short_view_count": {
            "type": "string",
            "description": "Same localized view-count text as `view_count` on both fixtures observed; kept as its own field since it is a distinct leaf in the raw response."
          },
          "duration_accessibility": {
            "type": "string",
            "description": "Human-readable duration, localized to the request's language_code."
          }
        },
        "additionalProperties": true
      },
      "description": "The channel's recently uploaded videos, most recent first. 30 entries observed on both real fixtures."
    },
    "channel": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "The channel ID, echoing the input."
        },
        "name": {
          "type": "string",
          "description": "The channel's own display name."
        },
        "keywords": {
          "type": "string",
          "description": "The channel's own self-published SEO keyword string. Observed as a single word on one fixture and a long quoted phrase list on the other."
        },
        "description": {
          "type": "string",
          "description": "The channel's own About text. Free text the channel owner wrote, and may include a self-published contact link (observed on one real fixture)."
        },
        "is_verified": {
          "type": "boolean"
        },
        "is_family_safe": {
          "type": "boolean"
        }
      },
      "description": "The queried channel's own public profile.",
      "additionalProperties": true
    },
    "continuation_token": {
      "type": "string",
      "description": "Opaque pagination token; pass back as the `continuation_token` input to fetch the next page of videos."
    }
  },
  "description": "The channel-and-videos record, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0020475
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026