SponsorUnited Item Subplatform API

Item Subplatform

Operations 7

GET /api/item-subplatform List all item subplatforms #
POST /api/item-subplatform Create a new subplatform #
GET /api/item-subplatform/{id} Get a subplatform by ID #
PUT /api/item-subplatform/{id} Update a subplatform #
DELETE /api/item-subplatform/{id} Delete a subplatform #
GET /api/item-subplatform/{id}/intent Get subplatform intent data #
PUT /api/item-subplatform/{oldId}/reassign/{newId} Reassign items to another subplatform #

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-item-subplatform-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-item-subplatform-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SponsorUnited Item Subplatform API
  version: v1
  description: Item Subplatform
tags:
- name: Item Subplatform
  description: Item Subplatform
paths:
  /api/item-subplatform:
    get:
      tags:
      - Item Subplatform
      summary: List all item subplatforms
      description: Returns a list of item subplatforms with optional filtering
      operationId: 455fc558b27ed533dc0094001f656ea5
      parameters:
      - name: subplatform_id
        in: query
        required: false
        schema:
          type: integer
      - name: team_id
        in: query
        required: false
        schema:
          type: string
      - name: season
        in: query
        description: Season year the counts are requested for. When given, each team's assets are counted against the league it belonged to in that season instead of its current league.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: List of subplatforms
          content:
            application/json:
              schema:
                type: array
                items:
                  properties:
                    id:
                      type: integer
                    name:
                      type: string
                    items_count:
                      type: integer
                  type: object
        '401':
          description: Unauthenticated
        '403':
          description: Forbidden
      security:
      - bearerAuth: []
    post:
      tags:
      - Item Subplatform
      summary: Create a new subplatform
      description: Creates a new subplatform under a specified platform
      operationId: 629695bf670aa07bedae5c34a6b5feb5
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                item_platform_id:
                  type: integer
                name:
                  type: string
              type: object
      responses:
        '200':
          description: Subplatform created
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
  /api/item-subplatform/{id}:
    get:
      tags:
      - Item Subplatform
      summary: Get a subplatform by ID
      description: Returns details of a specific item subplatform
      operationId: ef3631a90a8ddf80d08cc0c70f9b70e5
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Subplatform details
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
    put:
      tags:
      - Item Subplatform
      summary: Update a subplatform
      description: Updates the name and platform association of an existing subplatform
      operationId: f43133abb49f7fe78b7587eae103b6b9
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                item_platform_id:
                  type: integer
                name:
                  type: string
              type: object
      responses:
        '200':
          description: Subplatform updated
        '401':
          description: Unauthenticated
        '403':
          description: Forbidden
      security:
      - bearerAuth: []
    delete:
      tags:
      - Item Subplatform
      summary: Delete a subplatform
      description: Removes an item subplatform from the system
      operationId: 8ab226ade6f19de06f013a7752566766
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: Subplatform deleted
        '400':
          description: Failed to delete
        '404':
          description: Subplatform not found
      security:
      - bearerAuth: []
  /api/item-subplatform/{id}/intent:
    get:
      tags:
      - Item Subplatform
      summary: Get subplatform intent data
      description: Returns usage metrics for a subplatform including audits, items, and item values counts
      operationId: 1dc1f8bdb6337b2ed8b33fe4b8107d26
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Subplatform intent data
        '401':
          description: Unauthenticated
      security:
      - bearerAuth: []
  /api/item-subplatform/{oldId}/reassign/{newId}:
    put:
      tags:
      - Item Subplatform
      summary: Reassign items to another subplatform
      description: Reassigns all items from one subplatform to another
      operationId: 8cd9a58fd31c89021dfb2c2cc1bc09f0
      parameters:
      - name: oldId
        in: path
        required: true
        schema:
          type: integer
      - name: newId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Reassignment successful, returns old subplatform intent data
        '404':
          description: Subplatform not found
      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