feat(api): add bruno Radarr API requests for movies and quality profiles (we stan bruno)

This commit is contained in:
Sam Chau
2026-01-21 00:06:06 +10:30
parent 4c90c729e4
commit a0ba39bb35
5 changed files with 54 additions and 0 deletions

3
.gitignore vendored
View File

@@ -36,3 +36,6 @@ obj/
*.user *.user
*.suo *.suo
.vs/ .vs/
# Bruno environments (contain API keys)
bruno/environments/

6
bruno/bruno.json Normal file
View File

@@ -0,0 +1,6 @@
{
"version": "1",
"name": "Profilarr",
"type": "collection",
"format": "yaml"
}

View File

@@ -0,0 +1,15 @@
meta {
name: Get All Movies
type: http
seq: 2
}
get {
url: {{radarrUrl}}/api/v3/movie
body: none
auth: none
}
headers {
X-Api-Key: {{radarrApiKey}}
}

View File

@@ -0,0 +1,15 @@
meta {
name: Get Movie
type: http
seq: 1
}
get {
url: {{radarrUrl}}/api/v3/movie/1
body: none
auth: none
}
headers {
X-Api-Key: {{radarrApiKey}}
}

View File

@@ -0,0 +1,15 @@
meta {
name: Get Quality Profiles
type: http
seq: 3
}
get {
url: {{radarrUrl}}/api/v3/qualityprofile
body: none
auth: none
}
headers {
X-Api-Key: {{radarrApiKey}}
}