You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MovieFinder/api/tmdb.tsx

11 lines
233 B

import axios from "axios";
export default axios.create({
baseURL: 'https://api.themoviedb.org/3',
headers:{
Accept: "application/json"
},
params: {
api_key: 'a133422b5b1f22428e8074470d321865'
}
})