# Pagination

```json
{
    "data": [
        {
            [video object]
        },
        {
            [video object]
        },
        {
            [video object]
        }
    ],
    "links": {
        "first": "https://app.birdie.so/api/v1/videos?page=1",
        "last": null,
        "prev": null,
        "next": "https://app.birdie.so/api/v1/videos?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "https://app.birdie.so/api/v1/videos",
        "per_page": 50,
        "to": 1
    }
}
```

The <mark style="color:yellow;">`meta`</mark> object contains metadata about the current page and the <mark style="color:yellow;">`links`</mark> object contains url to other pages. The <mark style="color:yellow;">`data`</mark> array contains the actual list of objects for the current page.

#### &#x20; <a href="#pagination-fields" id="pagination-fields"></a>
