List Files API for Developers

    Feature

    List all files uploaded with your API key. Returns file URLs and creation timestamps, ordered newest first.

    What it does

    Returns all files uploaded by the calling API key.

    Each file includes its public URL and upload timestamp.

    Useful for auditing, cleanup workflows, and dashboard integrations.

    Endpoint & Parameters

    GET /v1/file/list

    limit
    optional

    Max number of files to return. 1–500, default 100.

    curl -X GET "https://pdfapihub.com/api/v1/file/list?limit=50" \
      -H "CLIENT-API-KEY: your_api_key_here"

    Response includes count and files[] array with url + created_at per file.

    Sandbox

    View and manage uploaded files

    List files by API key, then use the delete endpoint for cleanup.