Skip to content

Instantly share code, notes, and snippets.

@flyingluscas
Last active June 22, 2016 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flyingluscas/7c157f9da08f4c33d4adf616f103bdcb to your computer and use it in GitHub Desktop.
Save flyingluscas/7c157f9da08f4c33d4adf616f103bdcb to your computer and use it in GitHub Desktop.
Moov API Routes

Moov CLI REST-API

movie/list

Parameter | Required | Type | Default | Description --- | --- | --- | --- | --- | --- limit | No | Integer | 20 | Limit per page page | No | Integer | 1 | Page number quality | No | String | All | 720p, 1080p, 3D query | No | String | null | Search movies by title sort_by | No | String | date_added | Sort results by choosen value (title, year, date_added) order_by | No | String | desc | Orders the results by either Ascending or Descending order (asc, desc)

movie/detail

Parameter | Required | Type | Default | Description --- | --- | --- | --- | --- | --- id | Yes | Integer | null | The movie ID

tvshow/list

Parameter | Required | Type | Default | Description --- | --- | --- | --- | --- | --- limit | No | Integer | 20 | Limit per page page | No | Integer | 1 | Page number query | No | String | null | Search tv shows by title sort_by | No | String | date_added | Sort results by choosen value (title, year, date_added) order_by | No | String | desc | Orders the results by either Ascending or Descending order (asc, desc)

tvshow/detail

Parameter | Required | Type | Default | Description --- | --- | --- | --- | --- | --- id | Yes | Integer | null | Tv Show ID

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment