WeFitter connection API

Connections are the links between profiles and their wearables.

Operations 2

POST /connection/{connection_slug}/connect/ Connect wearable #
DELETE /connection/{connection_slug}/connect/ Disconnect Wearable #

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-connection-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-connection-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: WeFitter app Connection 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: connection
  description: Connections are the links between profiles and their wearables.
paths:
  /connection/{connection_slug}/connect/:
    parameters:
    - name: connection_slug
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: connection_connect_create
      summary: Connect wearable
      description: Get OAuth URL for this connection.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppConnectionUrl'
      tags:
      - connection
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileAsProfilePublicId'
        required: true
    delete:
      operationId: connection_connect_delete
      summary: Disconnect Wearable
      description: Disconnect a wearables connection
      parameters:
      - name: profile
        in: query
        description: A profile public_id is expected
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
      tags:
      - connection
      deprecated: false
components:
  schemas:
    AppConnectionUrl:
      required:
      - next
      type: object
      properties:
        next:
          title: Next
          type: string
          format: uri
          minLength: 1
    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.'