Actor detail page

Get Each actor Detail By Firing this api.

api/detail

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

This endpoint allows you to get actor details and their movies or seasons.

Path Parameters

Name
Type
Description

id

integer

ID of actor

Query Parameters

Name
Type
Description

secret

string

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

{
    "actormovies": [
        {
            "id": 11,
            "tmdb_id": 801335,
            "title": "Girl in the Basement",
            "slug": "girl-in-the-basement",
            "keyword": "Crime,Thriller",
            "description": "Sara is a teen girl who is looking forward to her 18th birthday to move away from her controlling father Don. But before she could even blow out the candles, Don imprisons her in the basement of their home.",
            "duration": "90",
            "thumbnail": "tmdb_qmddUxRwbsxHa7oEXm4PWh1KZe8.jpg",
            "poster": "tmdb_vDR2h5uQNgWyx3fsEVnEOcNFibZ.jpg",
            "tmdb": "Y",
            "fetch_by": "title",
            "director_id": "13",
            "actor_id": "2,1,55,56,57",
            "genre_id": "5,13",
            "trailer_url": "https://youtu.be/a7VGn_0Vsx8",
            "detail": "Sara is a teen girl who is looking forward to her 18th birthday to move away from her controlling father Don. But before she could even blow out the candles, Don imprisons her in the basement of their home.",
            "rating": 8.1,
            "maturity_rating": "all age",
            "subtitle": 0,
            "publish_year": 2021,
            "released": "2021-02-27",
            "upload_video": null,
            "featured": 0,
            "series": 0,
            "a_language": "2",
            "audio_files": null,
            "type": "M",
            "live": 0,
            "livetvicon": null,
            "status": 1,
            "is_protect": 0,
            "password": null,
            "created_by": 1,
            "created_at": "2021-08-03T17:23:53.000000Z",
            "updated_at": "2021-08-17T13:26:19.000000Z",
            "is_upcoming": 0,
            "is_custom_label": 0,
            "label_id": null,
            "upcoming_date": null,
            "user-rating": 0
        },
        {
            "id": 17,
            "tv_series_id": 41,
            "tmdb_id": null,
            "season_no": 1,
            "season_slug": "demotvseries-season-1",
            "tmdb": "N",
            "publish_year": null,
            "thumbnail": null,
            "poster": null,
            "actor_id": "1",
            "a_language": null,
            "detail": "",
            "featured": 0,
            "type": "S",
            "is_protect": 0,
            "password": null,
            "trailer_url": null,
            "created_at": "2021-12-01T07:43:12.000000Z",
            "updated_at": "2021-12-01T07:43:12.000000Z"
        }
    ],
    "actor": {
        "id": 1,
        "name": "Stefanie Scott",
        "image": "actor_1627991816Stefanie Scott.jpg",
        "biography": "",
        "place_of_birth": null,
        "DOB": null,
        "created_at": "2021-08-03T15:26:56.000000Z",
        "updated_at": "2021-10-28T05:06:21.000000Z",
        "slug": "stefanie-scott"
    }
}

Last updated