Send Deliverability
5 endpoints from the published OpenAPI import.
Get Queue
Live queue depth — the sending-health page's "is the pipe draining" read.
A tenant with no resolvable client_id gets the same shape a tenant with an empty queue gets, with available false: nothing was measured, and the response says so rather than reporting a calm zero.
Try it
Examples
cURL
curl -X GET 'https://spideriq.ai/api/v1/dashboard/send/deliverability/queue' \
-H 'Authorization: Bearer <token>'Python
import httpx
resp = httpx.get(
"https://spideriq.ai/api/v1/dashboard/send/deliverability/queue",
headers={"Authorization": "Bearer <token>"},
)
resp.raise_for_status()
print(resp.json())JavaScript
const resp = await fetch("https://spideriq.ai/api/v1/dashboard/send/deliverability/queue", {
method: "GET",
headers: { "Authorization": "Bearer <token>" }
});
const data = await resp.json();
console.log(data);Go
package main
import (
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://spideriq.ai/api/v1/dashboard/send/deliverability/queue", nil)
req.Header.Set("Authorization", "Bearer <token>")
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
}Responses
| Status | Description |
|---|---|
200 | Successful Response |
Get Summary
Funnel totals, rates, thresholds and feedback-ingest health.
A tenant with no resolvable client_id gets the same zeroed shape a tenant with no events gets — an empty dashboard, never a 403 or a 500.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
range | query | string | false | |
source_id | query | any | false |
Try it
Examples
cURL
curl -X GET 'https://spideriq.ai/api/v1/dashboard/send/deliverability/summary' \
-H 'Authorization: Bearer <token>'Python
import httpx
resp = httpx.get(
"https://spideriq.ai/api/v1/dashboard/send/deliverability/summary",
headers={"Authorization": "Bearer <token>"},
)
resp.raise_for_status()
print(resp.json())JavaScript
const resp = await fetch("https://spideriq.ai/api/v1/dashboard/send/deliverability/summary", {
method: "GET",
headers: { "Authorization": "Bearer <token>" }
});
const data = await resp.json();
console.log(data);Go
package main
import (
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://spideriq.ai/api/v1/dashboard/send/deliverability/summary", nil)
req.Header.Set("Authorization", "Bearer <token>")
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
}Responses
| Status | Description |
|---|---|
200 | Successful Response |
422 | Validation Error |
Get Timeseries
Daily bounce & complaint rates, plus the threshold lines to draw them against.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
range | query | string | false | |
source_id | query | any | false |
Try it
Examples
cURL
curl -X GET 'https://spideriq.ai/api/v1/dashboard/send/deliverability/timeseries' \
-H 'Authorization: Bearer <token>'Python
import httpx
resp = httpx.get(
"https://spideriq.ai/api/v1/dashboard/send/deliverability/timeseries",
headers={"Authorization": "Bearer <token>"},
)
resp.raise_for_status()
print(resp.json())JavaScript
const resp = await fetch("https://spideriq.ai/api/v1/dashboard/send/deliverability/timeseries", {
method: "GET",
headers: { "Authorization": "Bearer <token>" }
});
const data = await resp.json();
console.log(data);Go
package main
import (
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://spideriq.ai/api/v1/dashboard/send/deliverability/timeseries", nil)
req.Header.Set("Authorization", "Bearer <token>")
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
}Responses
| Status | Description |
|---|---|
200 | Successful Response |
422 | Validation Error |
Get Undeliverable
Bounces / complaints / failures, newest first, keyset-paginated.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
range | query | string | false | |
kind | query | string | false | |
limit | query | integer | false | |
cursor | query | any | false | |
source_id | query | any | false |
Try it
Examples
cURL
curl -X GET 'https://spideriq.ai/api/v1/dashboard/send/deliverability/undeliverable' \
-H 'Authorization: Bearer <token>'Python
import httpx
resp = httpx.get(
"https://spideriq.ai/api/v1/dashboard/send/deliverability/undeliverable",
headers={"Authorization": "Bearer <token>"},
)
resp.raise_for_status()
print(resp.json())JavaScript
const resp = await fetch("https://spideriq.ai/api/v1/dashboard/send/deliverability/undeliverable", {
method: "GET",
headers: { "Authorization": "Bearer <token>" }
});
const data = await resp.json();
console.log(data);Go
package main
import (
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://spideriq.ai/api/v1/dashboard/send/deliverability/undeliverable", nil)
req.Header.Set("Authorization", "Bearer <token>")
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
}Responses
| Status | Description |
|---|---|
200 | Successful Response |
422 | Validation Error |
Get Sources
Pacing state, sending identity and reputation for the caller's sources.
range windows the reputation rates only — pacing state and caps are always current. It defaults to 7d so every pre-2.U caller (U.2's deliverability rail, U.1's composer source picker) is unchanged.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
range | query | string | false |
Try it
Examples
cURL
curl -X GET 'https://spideriq.ai/api/v1/dashboard/send/deliverability/sources' \
-H 'Authorization: Bearer <token>'Python
import httpx
resp = httpx.get(
"https://spideriq.ai/api/v1/dashboard/send/deliverability/sources",
headers={"Authorization": "Bearer <token>"},
)
resp.raise_for_status()
print(resp.json())JavaScript
const resp = await fetch("https://spideriq.ai/api/v1/dashboard/send/deliverability/sources", {
method: "GET",
headers: { "Authorization": "Bearer <token>" }
});
const data = await resp.json();
console.log(data);Go
package main
import (
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://spideriq.ai/api/v1/dashboard/send/deliverability/sources", nil)
req.Header.Set("Authorization", "Bearer <token>")
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
}Responses
| Status | Description |
|---|---|
200 | Successful Response |
422 | Validation Error |