Skip to content

Audicin for Apps API (1.0.0)

Audicin for Apps API Authentication (REQUIRED)

All Audicin for Apps API endpoints require the X-API-KEY header.

Example:

X-API-KEY: xxxxxxxxx

Common error responses:

  • 401 → Missing or invalid API key
  • 402 → Subscription inactive / expired
  • 403 → License missing or quota exceeded
  • 404 → Resource not found
Languages
Servers
Generated server url
https://dev.api-b2b.audicin.com/api/v1
Operations
Operations
Operations

Request

Returns a paginated list of song categories available to the tenant. Categories are used to organize and filter the music catalogue (e.g. genres, moods, or classification groups).

This endpoint is typically used to populate filters, dropdowns, or navigation elements in the catalogue UI.

Security
api-key
Query
pageinteger(int32)[ 0 .. 100 ]
Default 0
sizeinteger(int32)[ 1 .. 100 ]
Default 10
curl -i -X GET \
  'https://dev.api-b2b.audicin.com/api/v1/tenants/categories?page=0&size=10' \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Paginated list of categories

Bodyapplication/json
contentArray of objects(CategoryTenantResponse)

Page content

numberinteger(int32)
Example: 0
sizeinteger(int32)
Example: 10
totalElementsinteger(int64)
Example: 42
totalPagesinteger(int32)
Example: 5
Response
application/json
{ "content": [ { … } ], "number": 0, "size": 10, "totalElements": 1, "totalPages": 1 }

Generate presigned URLs for audio previews and full audios

Operations
Operations
Operations