SponsorUnited Audio Download Links API

Audio Download Links

Operations 3

GET /api/user/{user_id}/event/{event_id}/property/{property_id}/audio-download-links Get audio download link #
POST /api/user/{user_id}/event/{event_id}/property/{property_id}/audio-download-links Create or update audio download link #
DELETE /api/user/{user_id}/event/{event_id}/property/{property_id}/audio-download-links/{id} Delete audio download link #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sponsorunited-audio-download-links-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sponsorunited-audio-download-links-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SponsorUnited Audio Download Links API
  version: v1
  description: Audio Download Links
tags:
- name: Audio Download Links
  description: Audio Download Links
paths:
  /api/user/{user_id}/event/{event_id}/property/{property_id}/audio-download-links:
    get:
      tags:
      - Audio Download Links
      summary: Get audio download link
      description: Retrieves the audio download link associated with a user's scouting event for a specific property
      operationId: c2e5f6c0fc67f2eda4da441931c1597c
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: integer
      - name: event_id
        in: path
        required: true
        schema:
          type: integer
      - name: property_id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Audio download link retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AudioDownloadLinkResource'
      security:
      - bearerAuth: []
    post:
      tags:
      - Audio Download Links
      summary: Create or update audio download link
      description: Creates a new audio download link or updates an existing one for a user's scouting event for a specific property. If a link already exists for the user event, it will be updated with the new URL.
      operationId: 4bdbdb07e1b0858bb7bea28207af2c83
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: integer
      - name: event_id
        in: path
        required: true
        schema:
          type: integer
      - name: property_id
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StoreAudioDownloadLinkRequest'
      responses:
        '201':
          description: Audio download link created or updated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AudioDownloadLinkResource'
      security:
      - bearerAuth: []
  /api/user/{user_id}/event/{event_id}/property/{property_id}/audio-download-links/{id}:
    delete:
      tags:
      - Audio Download Links
      summary: Delete audio download link
      description: Deletes an audio download link associated with a user's scouting event for a specific property
      operationId: 7904d623aeaa1d3108faf379b3b1a449
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: integer
      - name: event_id
        in: path
        required: true
        schema:
          type: integer
      - name: property_id
        in: path
        required: true
        schema:
          type: integer
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: Audio download link deleted successfully.
      security:
      - bearerAuth: []
components:
  schemas:
    StoreAudioDownloadLinkRequest:
      required:
      - url
      properties:
        url:
          description: Audio download URL
          type: string
          format: uri
          maxLength: 500
          example: https://example.com/audio/download.mp3
      type: object
    AudioDownloadLinkResource:
      properties:
        id:
          description: Audio download link ID
          type: integer
          example: 1
        url:
          description: Audio download URL
          type: string
          example: https://example.com/audio/download.mp3
        createdAt:
          description: Creation timestamp
          type: string
          format: date-time
          example: '2023-01-01T12:00:00.000000Z'
        updatedAt:
          description: Last update timestamp
          type: string
          format: date-time
          example: '2023-01-01T12:00:00.000000Z'
      type: object
  securitySchemes:
    bearerAuth:
      type: http
      name: JWT Authentication
      in: header
      bearerFormat: JWT
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      description: 'Service API key for external services (ai-api, chat-api). Generate with: php artisan su:api-token:generate'
      name: X-API-Key
      in: header