# AudioSocket LLM Integration Guide # https://audiosocket.com/ ## API Access for Language Models ### Overview AudioSocket provides a comprehensive music and sound effects licensing platform. This file documents guidelines for LLM integration and API access. ### Base API Endpoint https://api.audiosocket.com/v1/ ### Authentication - API Key: Required for all requests - Header: Authorization: Bearer {YOUR_API_KEY} - Get your API key at: https://audiosocket.com/developers ### Core Endpoints #### Search Music POST /music/search - Query music library by title, artist, mood, genre - Rate limit: 100 requests/minute #### License Track POST /licenses/create - License music for commercial use - Includes all necessary usage rights #### Get Metadata GET /music/{track_id} - Retrieve complete track information - Returns: title, artist, duration, genres, moods, license terms ### Rate Limits - Free tier: 50 requests/day - Pro tier: 5,000 requests/day - Enterprise: Custom limits ### Supported Query Parameters - search_term: string - genre: string - mood: string - duration_min: integer (seconds) - duration_max: integer (seconds) - bpm_min: integer - bpm_max: integer - sort_by: popularity|relevance|date_added ### Response Format All responses return JSON with the following structure: ```json { "status": "success|error", "data": {}, "meta": { "request_id": "string", "timestamp": "ISO 8601" } } ``` ### Terms of Service - Review full terms: https://audiosocket.com/terms - Respect copyright and licensing requirements - Attribution required as per license terms ### Support & Documentation - Developer Portal: https://audiosocket.com/developers - API Documentation: https://docs.audiosocket.com/ - Support Email: api-support@audiosocket.com ### Last Updated May 2026