SponsorUnited Scouting Groups API

Scouting Groups

Operations 3

GET /api/scouting-groups List scouting groups #
POST /api/scouting-groups Create or update scouting group #
DELETE /api/scouting-groups/{id} Delete scouting group #

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-scouting-groups-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-scouting-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SponsorUnited Scouting Groups API
  version: v1
  description: Scouting Groups
tags:
- name: Scouting Groups
  description: Scouting Groups
paths:
  /api/scouting-groups:
    get:
      tags:
      - Scouting Groups
      summary: List scouting groups
      description: Returns all scouting groups with their owners, members, and member counts
      operationId: c5781451f1f168b06373e1540fb1b1de
      responses:
        '200':
          description: All Scouting Groups
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScoutingGroupsIndex'
      security:
      - bearerAuth: []
    post:
      tags:
      - Scouting Groups
      summary: Create or update scouting group
      description: Creates a new scouting group or updates an existing one if an ID is provided, and syncs the group members
      operationId: a62afe6f35086bd538f28960530ea525
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScoutingGroupsStoreRequest'
      responses:
        '200':
          description: The created Scouting Group
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScoutingGroup'
      security:
      - bearerAuth: []
  /api/scouting-groups/{id}:
    delete:
      tags:
      - Scouting Groups
      summary: Delete scouting group
      description: Removes a scouting group and detaches all its members
      operationId: 6dc6853da67618952c1bc19a474813b4
      parameters:
      - name: id
        in: path
        description: ID of Scouting Group to delete
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: Scouting Group deleted
      security:
      - bearerAuth: []
components:
  schemas:
    ScoutingGroupsIndex:
      allOf:
      - $ref: '#/components/schemas/ScoutingGroup'
      - properties:
          members_count:
            type: integer
          owner:
            allOf:
            - $ref: '#/components/schemas/User'
            - $ref: '#/components/schemas/PersonProfile'
          members:
            type: array
            items:
              allOf:
              - $ref: '#/components/schemas/User'
              - properties:
                  person_profile:
                    $ref: '#/components/schemas/PersonProfile'
                  pivot:
                    allOf:
                    - properties:
                        scouting_group_id:
                          type: integer
                        user_id:
                          type: integer
                      type: object
                type: object
        type: object
    ScoutingGroup:
      properties:
        id:
          type: integer
        owner_id:
          type: integer
        name:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      type: object
    PersonProfile:
      properties:
        id:
          type: integer
        user_id:
          type: integer
        avatar_id:
          type:
          - integer
          - 'null'
        person_profile_job_role_id:
          type:
          - integer
          - 'null'
        market_id:
          type:
          - integer
          - 'null'
        name:
          type: string
        job_title:
          type:
          - string
          - 'null'
        location:
          type:
          - string
          - 'null'
        school:
          type:
          - string
          - 'null'
        info:
          type:
          - string
          - 'null'
        suggested:
          type:
          - integer
          - 'null'
        previous_suggested:
          type:
          - integer
          - 'null'
        approved:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        deleted_at:
          type: string
          format: date-time
      type: object
    ScoutingGroupsStoreRequest:
      required:
      - name
      properties:
        id:
          type: integer
        name:
          type: string
        owner_id:
          type: integer
        members:
          type: string
          example: 123,456,789
      type: object
    User:
      properties:
        id:
          type: integer
        email:
          type: string
        currency:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        deleted_at:
          type: string
          format: date-time
        last_active_at:
          type: string
          format: date-time
        is_external:
          type: boolean
        verified:
          type: integer
        genuine:
          type: integer
        hubspot_id:
          type: integer
        hubspot_synced_on:
          type: string
          format: date-time
        force_new_password:
          type: integer
        credentials_sent_at:
          type: string
          format: date-time
      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