Station
Get your station's name, description, and branding information.
Get station info
GET /v1/station
Returns basic information about your station.
Response
{
"id": 42,
"name": "Radio One",
"description": "The best music from the 80s and 90s",
"image": "https://cdn.example.com/stations/radio-one.png",
"color": "#e91e63",
"url": "https://radioone.example.com"
}
Fields
| Field | Type | Description |
|---|---|---|
id | integer | Station (stream) ID |
name | string | Station display name |
description | string | Station description |
image | string | Station logo URL (empty string if none) |
color | string | Brand colour as hex (e.g., #e91e63) |
url | string | Station website URL (empty string if none) |
Example
curl -H "X-API-Key: your-key" \
https://api.autopod.xyz/v1/station
Use cases
- Display your station's branding in a custom app or website
- Fetch the station logo and colour for consistent theming
- Get the station description for an "about" page