Skip to content

Directors API

Goran Nikic edited this page Feb 12, 2018 · 5 revisions

The Directors API allows you to access Opencinemas Directors database.

List All Directors

GET /directors Returns a Paged Result containing the list of Directors.

Filters

  • "director_name" - String - "John Smith"
  • "adult" - String - Either "Y" or "N"

Get an Actor By ID

GET /directors/get/:id

Response

 {
    "status": "OK",
    "code": 200,
    "messages": "common.SUCCESSFUL_REQUEST",
    "data": {
        "director_id": 20,
        "director_name": "Andy Wachowski",
        "bio": "",
        "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg",
        "popularity": 1.59626,
        "adult": "N",
        "create_at": "2015-12-22 04:12:20",
        "updated_at": null
    }
}

Clone this wiki locally