SwipeForMovie Developer
API Reference

Get a title

GET/v1/titles/{imdb_id}

Retrieves one normalized title by its catalog IMDb identifier. A successful response always contains exactly one item in data.

Authorization

bearer_auth
AuthorizationBearer <token>

Send the complete generated API key in Authorization: Bearer <key>. Valid key strings begin with mov_live_ and contain at least 43 URL-safe base64 characters after the prefix.

In: header

Path Parameters

imdb_id*string

A title identifier beginning with tt followed by one or more digits.

Match^tt\d+$

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl "https://api.swipeformovie.com/v1/titles/tt0133093" \  -H "Authorization: Bearer $SWIPEFORMOVIE_API_KEY"
{  "data": [    {      "id": 1,      "imdb_id": "tt0133093",      "type": "movie",      "title": "The Matrix",      "original_title": "The Matrix",      "year": 1999,      "end_year": null,      "runtime_minutes": 136,      "genres": [        "Action",        "Sci-Fi"      ],      "content_rating": "R",      "plot": "A computer hacker learns that the world he knows is a simulated reality.",      "languages": [        "English"      ],      "countries": [        "United States"      ],      "directors": [        "Lana Wachowski",        "Lilly Wachowski"      ],      "writers": [        "Lilly Wachowski",        "Lana Wachowski"      ],      "actors": [        "Keanu Reeves",        "Laurence Fishburne",        "Carrie-Anne Moss"      ],      "awards": "Won 4 Academy Awards.",      "poster_url": "https://images.example.com/poster.jpg",      "box_office": "$172,076,928",      "production": null,      "total_seasons": null,      "ratings": {        "average": 8.7,        "votes": 2200000      }    }  ],  "meta": {    "request_id": "req_01J7EXAMPLE"  }}