# YouTube Profile Full API (https://www.socialcrawl.dev/platforms/youtube/profile-full) > Fans out to the YouTube profile and recent-posts endpoints in parallel and returns the unified author, the recent-post list, and computed metrics — average engagement rate, posting cadence (with the window it was measured over), the top post, and the format mix. The profile leg is the only critical leg: if posts can't be fetched the call still returns the profile with post-dependent metrics null, and every leg's status is surfaced in legs[]. Flat 5 credits. TL;DR: `GET /v1/youtube/profile/full` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `handle` | no | | | `channelId` | no | | | `url` | no | | | `posts` | no | How many recent posts to fetch + average the computed metrics over (1–100, default 25). | | `cursor` | no | Pass a prior response's posts_cursor to deepen the post window. | | `include` | no | CSV subset of posts,computed (default both). include=computed drops the raw posts[] to save payload. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/youtube/profile/full" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### What does the YouTube Analytics API return in one call? One call to GET /v1/youtube/profile/full returns three things at once: the channel, the recent videos, and computed analytics — average engagement rate, upload cadence (uploads per week), the top video by engagement, and the format mix. No single endpoint produces that combination. ### How do I fetch a channel's channel, videos, and analytics together? Send a GET request to /v1/youtube/profile/full with a handle, channelId, or channel URL. SocialCrawl fans out to the channel and videos endpoints in parallel and merges them, so you get the channel, recent videos, and computed metrics back in a single response instead of three separate calls. ### What analytics does the youtube analytics api compute? It computes four metrics over the recent videos: average engagement rate (the mean of each video's engagement rate), uploads per week from the publish-date span, the top video by total engagement, and a format mix counting video, image, and text videos. These are deterministic — no AI guesswork. ### How much does the youtube analytics api cost per call? A flat 5 credits per call, regardless of how many videos come back. The channel is the critical part — if the channel can't be fetched the call fails and refunds; if only the videos are missing you still get the channel and the call is charged. New accounts get 100 free credits, no card. ### How many videos can I pull and can I page deeper? The posts parameter caps the window from 1 to 100 videos (default 25), and every computed metric averages over exactly that window. The response returns a posts_cursor you can pass back on a follow-up call to deepen the video window when you need a longer history. ### What happens if a channel has no recent videos? The channel is the critical leg, so you always get it. If the videos can't be fetched the response returns the channel with an empty videos array, the post-dependent analytics come back null honestly rather than faked, and the per-leg status is shown in the legs array. See the full YouTube API: https://www.socialcrawl.dev/platforms/youtube ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to get a channel's channel, videos, and analytics in one SocialCrawl API call - What does the SocialCrawl YouTube Analytics API return?