feat(bruno): add Profilarr API requests

This commit is contained in:
Sam Chau
2026-01-25 23:35:35 +10:30
parent fb8a0f73ce
commit bef616e595
7 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
meta {
name: Get Arr Library
type: http
seq: 5
}
get {
url: {{profilarrUrl}}/api/v1/arr/library?instanceId=1
body: none
auth: none
}

View File

@@ -0,0 +1,11 @@
meta {
name: Search Arr Releases
type: http
seq: 6
}
get {
url: {{profilarrUrl}}/api/v1/arr/releases?instanceId=1&itemId=1&season=1
body: none
auth: none
}

View File

@@ -0,0 +1,23 @@
meta {
name: Evaluate Releases
type: http
seq: 4
}
post {
url: {{profilarrUrl}}/api/v1/entity-testing/evaluate
body: json
auth: none
}
body:json {
{
"releases": [
{
"id": 1,
"title": "Movie.Name.2024.2160p.UHD.BluRay.REMUX.DV.HDR.HEVC.TrueHD.7.1.Atmos-GROUP",
"type": "movie"
}
]
}
}

View File

@@ -0,0 +1,7 @@
meta {
name: Profilarr
}
headers {
X-Api-Key: {{profilarrApiKey}}
}

View File

@@ -0,0 +1,11 @@
meta {
name: Health Check (Verbose)
type: http
seq: 2
}
get {
url: {{profilarrUrl}}/api/v1/health?verbose=true
body: none
auth: none
}

View File

@@ -0,0 +1,11 @@
meta {
name: Health Check
type: http
seq: 1
}
get {
url: {{profilarrUrl}}/api/v1/health
body: none
auth: none
}

View File

@@ -0,0 +1,11 @@
meta {
name: OpenAPI Spec
type: http
seq: 3
}
get {
url: {{profilarrUrl}}/api/v1/openapi.json
body: none
auth: none
}