SponsorUnited User Actions API

User activity tracking and organization statistics endpoints

Operations 9

GET /api/user-actions Get user actions #
GET /api/track/organization/stats Get all organization statistics #
GET /api/track/organization/stats/export Export all organization statistics #
GET /api/track/organization/{organization_id}/stats Get organization statistics #
GET /api/track/organization/{organization_id}/stats/export Export organization statistics #
GET /api/track/organization/{organization_id}/stats/user Get organization user statistics #
GET /api/track/organization/{organization_id}/stats/weekly Get organization weekly statistics #
GET /api/track/organization/{organization_id}/stats/category Get organization category statistics #
GET /api/track/organization/{organization_id}/stats/league Get organization property type statistics #

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-user-actions-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-user-actions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SponsorUnited User Actions API
  version: v1
  description: User activity tracking and organization statistics endpoints
tags:
- name: User Actions
  description: User activity tracking and organization statistics endpoints
paths:
  /api/user-actions:
    get:
      tags:
      - User Actions
      summary: Get user actions
      description: 'Get paginated user actions from MongoDB for the administration activity page.


        Retrieves user actions from year-based MongoDB collections (type-page-view-{year})

        and enriches them with user, team, and organization data from MySQL.'
      operationId: 8217d4dee6518c14d691f5d6e285c1aa
      parameters:
      - name: startDate
        in: query
        description: Start date for filtering actions
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        description: End date for filtering actions
        required: true
        schema:
          type: string
          format: date
      - name: paginate
        in: query
        description: Number of items per page
        required: false
        schema:
          type: integer
          default: 20
      responses:
        '200':
          description: Successful response with paginated user actions
  /api/track/organization/stats:
    get:
      tags:
      - User Actions
      summary: Get all organization statistics
      description: Returns aggregated usage statistics for all organizations
      operationId: 6c8929e308dd725c0a0e716ba633cb24
      parameters:
      - name: startDate
        in: query
        description: Start date for statistics period
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        description: End date for statistics period
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Organization statistics
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
  /api/track/organization/stats/export:
    get:
      tags:
      - User Actions
      summary: Export all organization statistics
      description: Downloads organization statistics as an Excel file
      operationId: 8be3f9c3dfdd119d6d6955f1da6e1aef
      parameters:
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Excel file download
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
  /api/track/organization/{organization_id}/stats:
    get:
      tags:
      - User Actions
      summary: Get organization statistics
      description: Returns usage statistics for a specific organization
      operationId: ffcc3b63bddd3d4f5f4e99c5665aa00a
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: integer
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Organization statistics
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
  /api/track/organization/{organization_id}/stats/export:
    get:
      tags:
      - User Actions
      summary: Export organization statistics
      description: Downloads organization statistics as an Excel file
      operationId: 8ee16e6ed81610e7aa962072b21defb4
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: integer
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Excel file download
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
  /api/track/organization/{organization_id}/stats/user:
    get:
      tags:
      - User Actions
      summary: Get organization user statistics
      description: Returns user-level statistics for a specific organization
      operationId: 884680279e13f7e35884fba30ff4f489
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: integer
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: User statistics
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
  /api/track/organization/{organization_id}/stats/weekly:
    get:
      tags:
      - User Actions
      summary: Get organization weekly statistics
      description: Returns weekly usage statistics for a specific organization
      operationId: 17109e09fb716082b087fa6f3edae2a7
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: integer
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Weekly statistics
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
  /api/track/organization/{organization_id}/stats/category:
    get:
      tags:
      - User Actions
      summary: Get organization category statistics
      description: Returns category-level usage statistics for a specific organization
      operationId: 11db03e97916a183a03c8853dab1e493
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: integer
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Category statistics
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
  /api/track/organization/{organization_id}/stats/league:
    get:
      tags:
      - User Actions
      summary: Get organization property type statistics
      description: Returns property type (league) statistics for a specific organization
      operationId: cbe197d686bedeb45fb6665aa0b8be94
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: integer
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Property type statistics
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
components:
  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