## Content search


This endpoint provides a means for searching content in the API. 
Pagination:
see [PagingAndSorting.md](../PagingAndSorting.md) (The ordering options do not apply in search)

## GET - api/v1/search

This endpoint requires the parameter "q" than contains the search criteria.

#### Example request:
/api/v1/search?q=Joana


##### Response:
```json
{
    "data": [
        {
            "title": "Joana Vasconcelos",
            "url": "http://contemporanea.lndo.site/api/v1/artists/2",
            "type": "artist",
            "image": "http://contemporanea.lndo.site/storage/uploads/media/200px-joana-vasconcelos.png"
        },
        {
            "title": "Coleção Manuel de Brito",
            "url": "http://contemporanea.lndo.site/api/v1/collections/4",
            "type": "collection",
            "image": "http://contemporanea.lndo.site/storage/uploads/media/never-ending-story.gif"
        },
        {
            "title": "Sapatos - Antologia de Joana Vaconcelos",
            "url": "http://contemporanea.lndo.site/api/v1/exhibitions/2",
            "type": "exhibition",
            "image": "http://contemporanea.lndo.site/storage/uploads/media/sapato-joana-vasc.jpeg"
        },
        {
            "title": "Coleção Berardo",
            "url": "http://contemporanea.lndo.site/api/v1/collections/2",
            "type": "collection",
            "image": "http://contemporanea.lndo.site/storage/uploads/media/ccb.jpeg"
        },
        {
            "title": "Coleção Gulbenkian",
            "url": "http://contemporanea.lndo.site/api/v1/collections/3",
            "type": "collection",
            "image": "http://contemporanea.lndo.site/storage/uploads/media/gulbenkian.jpeg"
        },
        {
            "title": "Bianal de Veneza 2022",
            "url": "http://contemporanea.lndo.site/api/v1/exhibitions/7",
            "type": "exhibition",
            "image": "http://contemporanea.lndo.site/storage/uploads/media/200px-joana-vasconcelos.png"
        }
    ],
    "pagination": {
        "current_page": 1,
        "total_items": 6,
        "per_page": 10,
        "total_pages": 1
    }
}
```
