Models

Base URL https://spideriq.ai/api/gate/v1
GET /models

List models

Lists every model available across all providers (OpenAI-compatible shape).

Responses
  • 200A list of models.
  • 401
GET /models
curl -X GET 'https://spideriq.ai/api/gate/v1/models' \
  -H 'Authorization: Bearer '
import httpx

resp = httpx.get(
    "https://spideriq.ai/api/gate/v1/models",
    headers={"Authorization": "Bearer "},
)
resp.raise_for_status()
print(resp.json())
const resp = await fetch("https://spideriq.ai/api/gate/v1/models", {
  method: "GET",
  headers: { "Authorization": "Bearer " }
});
const data = await resp.json();
console.log(data);
package main

import (
	"net/http"
)

func main() {
	req, _ := http.NewRequest("GET", "https://spideriq.ai/api/gate/v1/models", nil)
	req.Header.Set("Authorization", "Bearer ")
	resp, _ := http.DefaultClient.Do(req)
	defer resp.Body.Close()
}
GET /aliases

List task aliases

Lists the SpiderGate task aliases and the model chain each routes through. Prefer an alias over a raw model id — it gives automatic fallback and cost-aware routing.

Responses
  • 200A list of task aliases.
  • 401
GET /aliases
curl -X GET 'https://spideriq.ai/api/gate/v1/aliases' \
  -H 'Authorization: Bearer '
import httpx

resp = httpx.get(
    "https://spideriq.ai/api/gate/v1/aliases",
    headers={"Authorization": "Bearer "},
)
resp.raise_for_status()
print(resp.json())
const resp = await fetch("https://spideriq.ai/api/gate/v1/aliases", {
  method: "GET",
  headers: { "Authorization": "Bearer " }
});
const data = await resp.json();
console.log(data);
package main

import (
	"net/http"
)

func main() {
	req, _ := http.NewRequest("GET", "https://spideriq.ai/api/gate/v1/aliases", nil)
	req.Header.Set("Authorization", "Bearer ")
	resp, _ := http.DefaultClient.Do(req)
	defer resp.Body.Close()
}