#API MovieResult posterPath and BackdropPath

2 messages · Page 1 of 1 (latest)

torpid ridge
#

I'm working on something using the APIs discover endpoint, it reruns an array of type MovieResults. According to the docs the MovieResult includes a posterPath and a BackdropPath. These string values are something along the likes of this: "/3q01ACG0MWm0DekhvkPFCXyPZSu.jpg", but I cant for the live of me figure out to what endpoint I should suffix this, BASE_URL/3q01ACG0MWm0DekhvkPFCXyPZSu.jpg 404s as does BASE_URL/api/v1/3q01ACG0MWm0DekhvkPFCXyPZSu.jpg.

I've looked trough all the endpoints in the swagger docs, but eighter I'm completely missing something, or its just not there. Is there anyone that can point me in the right direction?

Example response:

{
    "id": 533535,
    "mediaType": "movie",
    "adult": false,
    "genreIds": [
        28,
        35,
        878
    ],
    "originalLanguage": "en",
    "originalTitle": "Deadpool & Wolverine",
    "overview": "A listless Wade Wilson toils away in civilian life with his days as the morally flexible mercenary, Deadpool, behind him. But when his homeworld faces an existential threat, Wade must reluctantly suit-up again with an even more reluctant Wolverine.",
    "popularity": 3500.919,
    "releaseDate": "2024-07-24",
    "title": "Deadpool & Wolverine",
    "video": false,
    "voteAverage": 7.753,
    "voteCount": 2693,
    "backdropPath": "/yDHYTfA3R0jFYba16jBB1ef8oIt.jpg",
    "posterPath": "/8cdWjvZQUExUUTzyp4t6EDMubfO.jpg",
    "mediaInfo": {
        "downloadStatus": [],
        "downloadStatus4k": [],
        "id": 404,
        "mediaType": "movie",
        "tmdbId": 533535,
        "tvdbId": null,
        "imdbId": null,
        "status": 3,
        "status4k": 1,
        "createdAt": "2024-09-06T02:00:25.000Z",
        "updatedAt": "2024-09-06T02:00:25.000Z",
        "lastSeasonChange": "2024-09-06T02:00:25.000Z",
        "mediaAddedAt": null,
        "serviceId": 0,
        "serviceId4k": null,
        "externalServiceId": 252,
        "externalServiceId4k": null,
        "externalServiceSlug": "533535",
        "externalServiceSlug4k": null,
        "ratingKey": null,
        "ratingKey4k": null,
        "seasons": [],
        "serviceUrl": "http://xxx.xxx.xxx.xxx:7878/movie/533535"
    }
}
chrome zealot