Retrieve all entities
                    
                    Returns the collection of available entities
Request
| Method: | GET | 
| Route: | api/idion/tags | 
| Example: | api/idion/tags | 
            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": 1,
                "category": "Noun",
                "value": "NoCmMaSgNm"
            },
            {
                "id": 2,
                "category": "Noun",
                "value": "NoCmMaSgGe"
            },
            {
                "id": 3,
                "category": "Noun",
                "value": "NoCmMaSgAc"
            },
            {
                "id": 4,
                "category": "Noun",
                "value": "NoCmMaSgDa"
            },
            {
                "id": 5,
                "category": "Noun",
                "value": "NoCmMaSgVo"
            },
            {
                "id": 6,
                "category": "Noun",
                "value": "NoCmMaPlNm"
            },
            {
                "id": 7,
                "category": "Noun",
                "value": "NoCmMaPlGe"
            },
            {
                "id": 8,
                "category": "Noun",
                "value": "NoCmMaPlAc"
            },
            {
                "id": 9,
                "category": "Noun",
                "value": "NoCmMaPlDa"
            },
            {
                "id": 10,
                "category": "Noun",
                "value": "NoCmMaPlVo"
            },
            {
                "id": 11,
                "category": "Noun",
                "value": "NoCmFeSgNm"
            },
            {
                "id": 12,
                "category": "Noun",
                "value": "NoCmFeSgGe"
            },
            {
                "id": 13,
                "category": "Noun",
                "value": "NoCmFeSgAc"
            },
            {
                "id": 14,
                "category": "Noun",
                "value": "NoCmFeSgDa"
            },
            {
                "id": 15,
                "category": "Noun",
                "value": "NoCmFeSgVo"
            }
        ],
        "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": null,
            "next": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=2"
        },
        "meta": {
            "current_page": 1,
            "from": 1,
            "last_page": 187,
            "links": [
                {
                    "url": null,
                    "label": "« Previous",
                    "active": false
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags?page=2",
                    "label": "2",
                    "active": false
                },
                {
                    "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=2",
                    "label": "Next »",
                    "active": false
                }
            ],
            "path": "http:\/\/api.greek.idion.athenarc.gr\/api\/idion\/tags",
            "per_page": 15,
            "to": 15,
            "total": 2803
        }
    },
    "system": {
        "messages": [],
        "status": 200,
        "status_text": "OK",
        "errors": [],
        "error_code": 0
    }
}Time: 0.88
select count(*) as aggregate from `tags`Time: 0.66
select * from `tags` order by `id` asc limit 15 offset 0Request
| Method: | GET | 
| Route: | api/idion/tags | 
| Example: | api/idion/tags | 
            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 |