Why a YouTube playlist count can differ from the videos you can see.

A playlist total, a list of API items, and the videos currently playable by one viewer are related numbers, but they are not always identical. Hidden placeholders, access restrictions, pagination, and stale snapshots can explain the gap.

How to investigate a playlist count mismatch

  1. Record which count you are comparing

    Separate YouTube's displayed total, the playlist resource item count, the rows returned during the scan, and the videos playable by the current account.

  2. Read every result page

    YouTube returns playlist items in pages of up to 50. A client must follow each next-page token before concluding that it has the complete list.

  3. Check for unavailable placeholders

    Deleted, private, hidden, or viewer-restricted entries can contribute to a total while exposing less information than a normal playable row.

  4. Use the same account context

    Compare results with the same connected account. A private upload may be visible to its owner but hidden from another viewer.

  5. Compare scan timestamps

    A saved snapshot and the live YouTube playlist can differ if the owner added, removed, reordered, or changed access to videos after the scan.

The four numbers worth keeping separate

Reported item count

The playlist resource provides an item count for the playlist at the time YouTube returns the resource.

Retrieved API rows

A complete list requires pagination. Stopping after the first response can undercount every playlist longer than 50 entries.

Identifiable entries

Some returned rows may expose only generic or incomplete metadata, so they can be counted without revealing the original song identity.

Playable videos

The number a viewer can play can be lower because access depends on account, location, age, licensing, or current video state.

Protected snapshot

A TrackRescue scan records what was observed at a specific time. It should not silently rewrite that historical total after later repairs.

Current playlist state

After a replacement is inserted, the current playlist total can change while the earlier scan remains an accurate record of the damaged state.

Common questions

Does a count mismatch mean my playlist is corrupted?

No. It usually means the compared numbers describe different visibility, timing, or retrieval contexts.

Why can YouTube say six videos are unavailable while only two have titles?

Four entries may already have lost their identifying metadata before the first useful snapshot. The hidden count survives, but the original identities may not.

Should scan history change after I repair a video?

No. Historical scans should preserve what was observed then, while current playlist statistics reflect the repaired state.

Official references