Retrieve all entities for a specific page

Returns the collection of available entities

Request

Method: GET
Route: api/idion/tags
Example: api/idion/tags?page=2&page_size=15
Request Headers
host: api.greek.idion.athenarc.gr
user-agent: Symfony
accept: application/json
accept-language: en-us,en;q=0.5
accept-charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
content-length: 2
content-type: application/json

Response

200 JSON
Response Headers
cache-control: no-cache, private
date: Sat, 17 Feb 2024 20:58:09 GMT
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
{
    "handler": "ApiResponse handler",
    "result": {
        "data": [
            {
                "id": 16,
                "category": "Noun",
                "value": "NoCmFePlNm"
            },
            {
                "id": 17,
                "category": "Noun",
                "value": "NoCmFePlGe"
            },
            {
                "id": 18,
                "category": "Noun",
                "value": "NoCmFePlAc"
            },
            {
                "id": 19,
                "category": "Noun",
                "value": "NoCmFePlDa"
            },
            {
                "id": 20,
                "category": "Noun",
                "value": "NoCmFePlVo"
            },
            {
                "id": 21,
                "category": "Noun",
                "value": "NoCmNeSgNm"
            },
            {
                "id": 22,
                "category": "Noun",
                "value": "NoCmNeSgGe"
            },
            {
                "id": 23,
                "category": "Noun",
                "value": "NoCmNeSgAc"
            },
            {
                "id": 24,
                "category": "Noun",
                "value": "NoCmNeSgDa"
            },
            {
                "id": 25,
                "category": "Noun",
                "value": "NoCmNeSgVo"
            },
            {
                "id": 26,
                "category": "Noun",
                "value": "NoCmNePlNm"
            },
            {
                "id": 27,
                "category": "Noun",
                "value": "NoCmNePlGe"
            },
            {
                "id": 28,
                "category": "Noun",
                "value": "NoCmNePlAc"
            },
            {
                "id": 29,
                "category": "Noun",
                "value": "NoCmNePlDa"
            },
            {
                "id": 30,
                "category": "Noun",
                "value": "NoCmNePlVo"
            }
        ],
        "links": {
            "first": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=1",
            "last": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=187",
            "prev": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=1",
            "next": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=3"
        },
        "meta": {
            "current_page": 2,
            "from": 16,
            "last_page": 187,
            "links": [
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=1",
                    "label": "« Previous",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=1",
                    "label": "1",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=2",
                    "label": "2",
                    "active": true
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=3",
                    "label": "3",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=4",
                    "label": "4",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=5",
                    "label": "5",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=6",
                    "label": "6",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=7",
                    "label": "7",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=8",
                    "label": "8",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=9",
                    "label": "9",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=10",
                    "label": "10",
                    "active": false
                },
                {
                    "url": null,
                    "label": "...",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=186",
                    "label": "186",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=187",
                    "label": "187",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=3",
                    "label": "Next »",
                    "active": false
                }
            ],
            "path": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags",
            "per_page": 15,
            "to": 30,
            "total": 2803
        }
    },
    "system": {
        "messages": [],
        "status": 200,
        "status_text": "OK",
        "errors": [],
        "error_code": 0
    }
}

Time: 0.65

select count(*) as aggregate from `tags`

Time: 0.73

select * from `tags` order by `id` asc limit 15 offset 15

Request

Method: GET
Route: api/idion/tags
Example: api/idion/tags?page=2&page_size=15
Request Headers
host: api.greek.idion.athenarc.gr
user-agent: Symfony
accept: application/json
accept-language: en-us,en;q=0.5
accept-charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
content-length: 2
content-type: application/json