SponsorUnited Brand Clip Timings API

Brand Clip Timings

Operations 1

GET /api/brand/clip/timings Get brand clip timings #

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-brand-clip-timings-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-brand-clip-timings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SponsorUnited Brand Clip Timings API
  version: v1
  description: Brand Clip Timings
tags:
- name: Brand Clip Timings
  description: Brand Clip Timings
paths:
  /api/brand/clip/timings:
    get:
      tags:
      - Brand Clip Timings
      summary: Get brand clip timings
      description: Retrieves brand clip timings for a scouting YouTube link. Can be queried by either user_event_id or scouting_youtube_link_id. At least one parameter must be provided.
      operationId: bfa0671b2a21c2163c55d0654b90204d
      parameters:
      - name: user_event_id
        in: query
        description: User event ID to retrieve brand clip timings for. Returns the most recent link if multiple exist.
        required: false
        schema:
          type: integer
          example: 123
      - name: scouting_youtube_link_id
        in: query
        description: Scouting YouTube link ID to retrieve brand clip timings for
        required: false
        schema:
          type: integer
          example: 456
      responses:
        '200':
          description: Brand clip timings retrieved successfully
          content:
            application/json:
              schema:
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/BrandClipTimingResource'
                type: object
        '404':
          description: Scouting YouTube link not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResource'
        '422':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResource'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResource'
      security:
      - bearerAuth: []
components:
  schemas:
    BrandClipTimingResource:
      properties:
        start:
          description: 'Start timestamp in the video (format: HH:MM:SS.MS)'
          type: string
          example: '00:00:06.640'
        end:
          description: 'End timestamp in the video (format: HH:MM:SS.MS)'
          type: string
          example: '00:00:17.160'
        text:
          description: Transcribed or related text for the clip section
          type: string
          example: you don't miss any of our great football content this season. This episode is presented by Uber Eats. When football
        asset:
          description: Asset description
          type: string
          example: 'Pre/Post Game Naming Rights: Show Presented by'
        brand:
          description: Brand name
          type: string
          example: Uber Eats
        asset_id:
          description: Asset ID
          type: integer
          example: 296
        brand_id:
          description: Brand ID
          type: integer
          example: 8851
      type: object
    ErrorResource:
      properties:
        error:
          type: string
          example: An error occurred
      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