Slider

Fire this api to show slider.

api/slider

GET https://yourdomain.com/api/slider

This end point will gives you list of slider

Query Parameters

Name
Type
Description

secret

string

Client secret key will goes here which you get from admin panel.

Headers

Name
Type
Description

Authorization*

string

Bearer { bearer_token without bracket }

Accept*

string

application/json

{
    "slider": [
        {
            "id": 1,
            "movie_id": null,
            "tv_series_id": null,
            "slide_image": "slide_1629095096slide_1591257619slide_1550912824slide_1528009587tvshow.jpg",
            "active": 1,
            "position": 1,
            "created_at": "2020-11-02T13:51:21.000000Z",
            "updated_at": "2021-08-16T09:54:56.000000Z"
        }
    ],
    "app_slider": [
        {
            "id": 1,
            "movie_id": null,
            "tv_series_id": null,
            "slide_image": "app_slide_1606642528movie.jpg",
            "active": 1,
            "position": 1,
            "created_at": "2020-11-29T13:47:00.000000Z",
            "updated_at": "2020-11-29T14:05:28.000000Z"
        },
        {
            "id": 2,
            "movie_id": null,
            "tv_series_id": null,
            "slide_image": "app_slide_1606642578tvshow.jpg",
            "active": 1,
            "position": 2,
            "created_at": "2020-11-29T14:06:18.000000Z",
            "updated_at": "2020-11-29T14:06:18.000000Z"
        }
    ]
}

Last updated