SponsorUnited Attendance API

Attendance

Operations 2

GET /api/attendance/{propertyId} Get attendance per property by property ID #
PUT /api/attendance/{propertyId} Update properties attendance #

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-attendance-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-attendance-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SponsorUnited Attendance API
  version: v1
  description: Attendance
tags:
- name: Attendance
  description: Attendance
paths:
  /api/attendance/{propertyId}:
    get:
      tags:
      - Attendance
      summary: Get attendance per property by property ID
      operationId: getAttendancePropertiesByPropertyId
      parameters:
      - name: propertyId
        in: path
        description: ID of the property
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AttendanceResource'
    put:
      tags:
      - Attendance
      summary: Update properties attendance
      operationId: updatePropertiesAttendance
      parameters:
      - name: propertyId
        in: path
        description: ID of the property
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        description: Property attendances to update
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendanceUpdateRequest'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AttendanceResource'
components:
  schemas:
    AttendanceUpdateRequest:
      description: Request for updating attendance data
      properties:
        property_attendances:
          description: Array of property attendances for update
          type: array
          items:
            properties:
              id:
                description: Unique identifier of the attendance entry
                type: integer
              property_id:
                description: The ID of the property
                type: integer
              season_id:
                description: The ID of the season
                type: integer
              attendance_average:
                description: The average attendance (optional)
                type: integer
              attendance_total:
                description: The total attendance (optional)
                type: integer
            type: object
      type: object
    AttendanceResource:
      properties:
        id:
          type: integer
        property_id:
          type: integer
        season_id:
          type: integer
        season:
          type: string
        league_name:
          type: string
        attendance_average:
          type: integer
        attendance_total:
          type: integer
        is_added_by_api:
          type: boolean
        stats_mapping_id:
          type:
          - integer
          - 'null'
        stats_sport:
          type:
          - string
          - 'null'
        stats_sport_id:
          type:
          - integer
          - 'null'
        stats_league_id:
          type:
          - integer
          - 'null'
        stats_league_abbreviation:
          type:
          - string
          - 'null'
        stats_league_name:
          type:
          - string
          - 'null'
        stats_team_id:
          type:
          - integer
          - 'null'
        stats_team_name:
          type:
          - string
          - 'null'
        stats_api:
          type:
          - string
          - 'null'
      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