EulerStream API SDK
This is an API wrapper for the Euler Stream API written in TypeScript.
With this API you can access any Euler Stream public endpoint.

Enterprise Solutions
Join the EulerStream discord for questions, concerns, or just a good chat.
Getting Started
Getting started is super simple! Remember to check out the OpenAPI Spec on the Euler Stream website at https://www.eulerstream.com/docs/openapi.
For your convenience, we have included a hello-world example using this SDK:
- Install the package with
npm i @eulerstream/euler-api-sdk
- Run the script below:
import EulerStreamApiClient, {IListAlertsResponse, IPipResponse} from "@eulerstream/euler-api-sdk";
import {AxiosResponse} from "axios";
const client = new EulerStreamApiClient(
{apiKey: 'YOUR_API_KEY'}
);
client.webcast.fetchWebcastURL('ttlive-node', undefined, 'tv_asahi_news').then((res: AxiosResponse<any>) => console.log("Got Webcast Fetch:", res.status, "Length:", JSON.stringify(res?.data).length));