File size: 565 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
const API_KEY = "989a8027930013244e3c2af17088dcac";
const tvrequests = [
{
title: "Discover TV Shows",
url: `/discover/tv?api_key=${API_KEY}`,
media: "tv",
},
{
title: "Comedy TV Shows",
url: `/discover/tv?api_key=${API_KEY}&with_genres=35`,
media: "tv",
},
{
title: "Adventure TV Shows",
url: `/discover/tv?api_key=${API_KEY}&with_genres=12`,
media: "tv",
},
{
title: "Popular in your Region TV Shows",
url: `/discover/tv?api_key=${API_KEY}®ion=IN`,
media: "tv",
},
];
export default tvrequests;
|