⚠️ These docs are currently under construction and may not be fully accurate.
AIOStreamsAIOStreams
API

Overview

Overview of the AIOStreams REST API.

AIOStreams exposes a REST API that lets you query streams programmatically, look up anime mappings, and more. Responses use a consistent JSON envelope.

Base Path: /api/v1


Response Envelope

All endpoints return a consistent top-level structure:

{
  "success": true,
  "detail": "optional message",
  "error": null,
  "data": { ... }
}
FieldTypeDescription
successbooleantrue if the request succeeded
detailstring | nullOptional informational message
errorobject | nullError object present when success is false
dataany | nullResponse payload

Error object:

FieldTypeDescription
codestringMachine-readable error code
messagestringHuman-readable description

Endpoints

On this page