diff --git a/bruno/AniTrack/Simkl/Get Items/Get Anime Full Info.bru b/bruno/AniTrack/Simkl/Get Items/Get Anime Full Info.bru new file mode 100644 index 0000000..6a19d27 --- /dev/null +++ b/bruno/AniTrack/Simkl/Get Items/Get Anime Full Info.bru @@ -0,0 +1,19 @@ +meta { + name: Get Anime Full Info + type: http + seq: 3 +} + +get { + url: https://api.simkl.com/anime/40398?extended=full + body: none + auth: none +} + +params:query { + extended: full +} + +headers { + simkl-api-key: {{SIMKL_CLIENT_ID}} +} diff --git a/bruno/AniTrack/Simkl/Get Items/Search By MalID to Get Simkl ID.bru b/bruno/AniTrack/Simkl/Get Items/Search By MalID to Get Simkl ID.bru new file mode 100644 index 0000000..7e1ebf2 --- /dev/null +++ b/bruno/AniTrack/Simkl/Get Items/Search By MalID to Get Simkl ID.bru @@ -0,0 +1,19 @@ +meta { + name: Search By MalID to Get Simkl ID + type: http + seq: 1 +} + +get { + url: https://api.simkl.com/search/id?anilist=174576 + body: none + auth: none +} + +params:query { + anilist: 174576 +} + +headers { + simkl-api-key: {{SIMKL_CLIENT_ID}} +}