SponsorUnited Representation API

Representation

Operations 3

GET /api/representation/{controllingPropertyId} Get controlled properties by controlling property ID #
PUT /api/representation/{controllingPropertyId} Update controlled properties by controlling property ID #
POST /api/prepresentation/{controllingPropertyId} Store a new representation #

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-representation-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-representation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SponsorUnited Representation API
  version: v1
  description: Representation
tags:
- name: Representation
  description: Representation
paths:
  /api/representation/{controllingPropertyId}:
    get:
      tags:
      - Representation
      summary: Get controlled properties by controlling property ID
      operationId: getControlPropertiesByControllingPropertyId
      parameters:
      - name: controllingPropertyId
        in: path
        description: ID of the controlling property
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RepresentationResource'
    put:
      tags:
      - Representation
      summary: Update controlled properties by controlling property ID
      operationId: updateControlPropertiesByControllingPropertyId
      parameters:
      - name: controllingPropertyId
        in: path
        description: ID of the controlling property
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        description: Properties to update
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RepresentationUpdateRequest'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RepresentationResource'
  /api/prepresentation/{controllingPropertyId}:
    post:
      tags:
      - Representation
      summary: Store a new representation
      description: Create and store a new representation based on the provided data.
      operationId: storeRepresentation
      parameters:
      - name: controllingPropertyId
        in: path
        description: ID of the controlling property
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        description: Properties to update
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RepresentationUpdateRequest'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RepresentationResource'
components:
  schemas:
    RepresentationUpdateRequest:
      properties:
        id:
          description: ID of the property control
          type: integer
        linkage_type:
          description: Linkage type of the representation data
          type: string
          enum:
          - PROPERTY
          - LEAGUE
          - TV
          - RADIO
          - DIGITAL
          - VENUE
          - EVENT
          - INDIVIDUAL
          - BROADCAST_RIGHTS
        controlled_property_id:
          description: ID of the controlled property
          type: integer
        control_value:
          description: Control value of the representation data
        is_asset_based_subplatform:
          description: Indicates if it's an asset-based subplatform representation
          type: boolean
        notes:
          description: Notes associated with the with the representation data
          type: string
        season_id:
          description: Season ID associated with the representation data
          type: integer
      type: object
    RepresentationResource:
      properties:
        id:
          type: integer
        name:
          type: string
        controlling_property_id:
          type: integer
        controlled_property_id:
          type: integer
        linkage_type:
          type: string
        control_value:
          type: integer
        is_asset_based_subplatform:
          type: boolean
        notes:
          type: string
        season_id:
          type: integer
      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