We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On the guidelines of the challenge. It says
https://agw.epidemicsound.com/catalog returns a list of genres and moods along with image urls for you to use.
However, the return for this API call is something like
{ "genres": [ { "id": "1334", "name": "Acoustic", "slug": "Acoustic", "children": [ { "id": "1338", "name": "Acoustic Group", "slug": "Acoustic", "children": [] }, { "id": "1342", "name": "Solo Guitar", "slug": "Acoustic", "children": [] }, { "id": "1343", "name": "Solo Instruments", "slug": "Acoustic", "children": [] }, { "id": "1344", "name": "Solo Piano", "slug": "Acoustic", "children": [] }, { "id": "1515", "name": "Folk", "slug": "Acoustic", "children": [] } ] }, { "id": "1364", "name": "World & Countries", "slug": "World & Countries", "children": [ { "id": "1305", "name": "Middle East", "slug": "World & Countries", "children": [] }, { "id": "1580", "name": "Cuba", "slug": "World & Countries", "children": [] } ] } ], "moods": [ { "id": "126", "name": "Angry", "slug": "Angry" }, { "id": "148", "name": "Weird", "slug": "Weird" } ] }
There is no image URL's on its body. Nevertheless, on the search call we can find images url's.
search
So, should we use only the image URL's from https://agw.epidemicsound.com/music/search?
https://agw.epidemicsound.com/music/search
The text was updated successfully, but these errors were encountered:
@trsneed
It seems like the first catalogue list that we should show should be fetched from https://agw.epidemicsound.com/featured
Sorry, something went wrong.
No branches or pull requests
On the guidelines of the challenge. It says
However, the return for this API call is something like
There is no image URL's on its body. Nevertheless, on the
search
call we can find images url's.So, should we use only the image URL's from
https://agw.epidemicsound.com/music/search
?The text was updated successfully, but these errors were encountered: