WeFitter team API

The team API from WeFitter — 5 operation(s) for team.

Operations 12

GET /team/ List Teams #
POST /team/ Create Team #
GET /team/{public_id}/ Team #
PUT /team/{public_id}/ Edit Team #
PATCH /team/{public_id}/ Partial Edit a Team #
DELETE /team/{public_id}/ Deletes a Team #
POST /team/{public_id}/member/ Add member #
PUT /team/{public_id}/member/ Add member #
DELETE /team/{public_id}/member/ Remove member #
POST /team/{public_id}/members/ Add members #
PUT /team/{public_id}/members/ Add members #
POST /team/{public_id}/remove_members/ Remove members #

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/wefitter-team-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

wefitter-team-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: WeFitter app Team API
  description: This is the WeFitter API
  termsOfService: https://www.wefitter.com/privacy/
  contact:
    email: hello@wefitter.com
  license:
    name: BSD License
  version: v1.3
servers:
- url: https://api.wefitter.com/api/v1.3
security:
- BearerProfile: []
tags:
- name: team
paths:
  /team/:
    parameters: []
    get:
      operationId: team_list
      summary: List Teams
      description: List all available teams
      parameters:
      - name: limit
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        description: The initial index from which to return the results.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/TeamList'
      tags:
      - team
      security:
      - BearerAdmin: []
      - BearerProfile: []
      deprecated: false
    post:
      operationId: team_create
      summary: Create Team
      description: Creates a new team
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamDetail'
      tags:
      - team
      security:
      - BearerAdmin: []
      - BearerProfile: []
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamDetail'
        required: true
  /team/{public_id}/:
    parameters:
    - name: public_id
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: team_read
      summary: Team
      description: Get a single team
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamDetail'
      tags:
      - team
      security:
      - BearerAdmin: []
      - BearerProfile: []
      deprecated: false
    put:
      operationId: team_update
      summary: Edit Team
      description: Creates a new team
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamDetail'
      tags:
      - team
      security:
      - BearerAdmin: []
      - BearerProfile: []
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamDetail'
        required: true
    patch:
      operationId: team_partial_update
      summary: Partial Edit a Team
      description: Creates a new team
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamDetail'
      tags:
      - team
      security:
      - BearerAdmin: []
      - BearerProfile: []
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamDetail'
        required: true
    delete:
      operationId: team_delete
      summary: Deletes a Team
      description: Deletes an existing team
      responses:
        '204':
          description: ''
      tags:
      - team
      security:
      - BearerAdmin: []
      - BearerProfile: []
      deprecated: false
  /team/{public_id}/member/:
    parameters:
    - name: public_id
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: team_member_create
      summary: Add member
      description: Add member to a team
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileAsProfilePublicId'
      tags:
      - team
      security:
      - BearerAdmin: []
      - BearerProfile: []
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileAsProfilePublicId'
        required: true
    put:
      operationId: team_member_update
      summary: Add member
      description: Add member to a team
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileAsProfilePublicId'
      tags:
      - team
      security:
      - BearerAdmin: []
      - BearerProfile: []
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileAsProfilePublicId'
        required: true
    delete:
      operationId: team_member_delete
      summary: Remove member
      description: Remove a member from the team
      parameters:
      - name: profile
        in: query
        description: A profile public_id is expected
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '204':
          description: ''
      tags:
      - team
      security:
      - BearerAdmin: []
      - BearerProfile: []
      deprecated: false
  /team/{public_id}/members/:
    parameters:
    - name: public_id
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: team_members_create
      summary: Add members
      description: Add members to a team
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfilePublicIdsList'
      tags:
      - team
      security:
      - BearerAdmin: []
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfilePublicIdsList'
        required: true
    put:
      operationId: team_members_update
      summary: Add members
      description: Add members to a team
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfilePublicIdsList'
      tags:
      - team
      security:
      - BearerAdmin: []
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfilePublicIdsList'
        required: true
  /team/{public_id}/remove_members/:
    parameters:
    - name: public_id
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: team_remove_members
      summary: Remove members
      description: Remove members from the team
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfilePublicIdsList'
      tags:
      - team
      security:
      - BearerAdmin: []
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfilePublicIdsList'
        required: true
components:
  schemas:
    TeamDetail:
      required:
      - name
      - description
      type: object
      properties:
        name:
          title: Name
          type: string
          maxLength: 100
          minLength: 1
        public_id:
          title: Public id
          type: string
          format: uuid
          readOnly: true
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        num_members:
          title: Num members
          type: string
          readOnly: true
        members:
          description: List of members in this team
          type: array
          items:
            $ref: '#/components/schemas/ProfileTeam'
          readOnly: true
        avatar:
          title: Avatar
          type:
          - string
          - 'null'
          format: uri
          minLength: 1
        description:
          title: Description
          type: string
          minLength: 1
    ProfilePublicIdsList:
      required:
      - profiles
      type: object
      properties:
        profiles:
          type: array
          items:
            type: string
            format: uuid
        is_active:
          title: Is active
          description: 'Whether profile actively participates in challenge.


            While inactive, scores/leaderboard will not be updated but still be visible.'
          type: boolean
        joined:
          title: Joined
          description: The timestamp when the profile/team joined the challenge.
          type: string
          format: date-time
    TeamList:
      required:
      - name
      type: object
      properties:
        name:
          title: Name
          type: string
          maxLength: 100
          minLength: 1
        public_id:
          title: Public id
          type: string
          format: uuid
          readOnly: true
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        num_members:
          title: Num members
          type: string
          readOnly: true
        avatar:
          title: Avatar
          type:
          - string
          - 'null'
          format: uri
          minLength: 1
    ProfileTeam:
      description: List of members in this team
      type: object
      properties:
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        public_id:
          title: Public id
          type: string
          format: uuid
          readOnly: true
        name:
          title: Name
          type: string
          readOnly: true
          minLength: 1
        reference:
          title: Reference
          type: string
          maxLength: 255
    ProfileAsProfilePublicId:
      required:
      - profile
      type: object
      properties:
        profile:
          title: Profile
          description: A profile public_id is expected
          type: string
          format: uuid
        joined:
          title: Joined
          description: The timestamp when the profile/team joined the challenge.
          type: string
          format: date-time
  securitySchemes:
    Basic:
      type: http
      scheme: basic
      description: 'Basic Authentication is used to create administrator bearer tokens.


        Once a bearer token has been made, remove this auth. (''logout'' in Swagger'')'
    BearerProfile:
      type: apiKey
      name: Authorization
      in: header
      description: 'Bearer authentication for logged-in profiles.


        When using the GUI, please don''t forget to prefix your bearer tokens with the text ''bearer'', followed by a space.'
    BearerAdmin:
      type: apiKey
      name: Authorization
      in: header
      description: 'Bearer authentication for administrators.


        When using the GUI, please don''t forget to prefix your bearer tokens with the text ''bearer'', followed by a space.'