Public catalog: bare JSON array (no envelope) of {model_slug, type} objects with type ∈ {audio, ocr}. No API key required. Slugs aligned with the registry: alpha-audio-v1; alpha-digit-max and alpha-digit-medium for OCR. For model details (endpoints, accepted extensions, pricing), use GET /models/{model_slug}.
GET
/models
Request body
The following parameters can be included in the request body:
Parameters
Successful response
The following fields are returned in a successful response:
Response fields
(array)
array<object>
Required
Response in bare array format — each entry contains model_slug (kebab-case) and type (audio or ocr).
model_slug
string
Required
Kebab-case identifier of the model (e.g. alpha-audio-v1).
type
string
Required
Capability type: "audio" or "ocr".
Examples
Code examples for using this endpoint:
curl
curl -X GET "https://api-endpoints.alphaedge-ai.com/models"
python
import requests
r = requests.get("https://api-endpoints.alphaedge-ai.com/models", timeout=30)
print(r.status_code, r.json())
typescript
const res = await fetch("https://api-endpoints.alphaedge-ai.com/models");
console.log(res.status, await res.json());
Response
Sample API response:
json
[
{"model_slug": "alpha-audio-v1", "type": "audio"},
{"model_slug": "alpha-digit-max", "type": "ocr"},
{"model_slug": "alpha-digit-medium", "type": "ocr"}
]