b.well Users API

The Users API from b.well — 2 operation(s) for users.

Operations 2

POST /users/{id}/data-exports Initiate user data export
DELETE /users/{id} Initiate user data deletion

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/b-well-users-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

b-well-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: B Well Users API
  version: 1.0.11
  contact:
    name: API Support
    email: support@icanbwell.com
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  termsOfService: http://swagger.io/terms/
  description: 'Operations tagged Users across 2 of this provider''s published API definitions: b-well-user-data-operations-openapi.json, b-well-users-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://user-data-ops.client-sandbox.icanbwell.com
- url: https://user-data-ops.prod.icanbwell.com
tags:
- name: Users
paths:
  /users/{id}/data-exports:
    post:
      summary: Initiate user data export
      description: Endpoint to initiate a user's request for personal health data export.
      parameters:
      - name: id
        in: path
        required: true
        description: The user's client-specific identifier which will vary by client. Please check with bwell customer support to verify the id to be used here.
        schema:
          type: string
      responses:
        '202':
          description: Export request accepted and processing has started.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Data export initiated successfully.
        '401':
          description: Invalid HMAC singature.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Unauthorized. Please supply valid authorization.
        '404':
          description: User not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: User not found
        '500':
          description: Server error when processing the request.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: There was an issue processing your request at this time. Please try again. If the problem persists contact bwell support at support@icanbwell.com.
      security:
      - HMACAuth: []
      - HMACContentSHA512: []
      - HMACHost: []
      - HMACDate: []
      - HMACClientUserToken: []
      - HMACClientKey: []
      tags:
      - Users
    servers:
    - url: https://user-data-ops.client-sandbox.icanbwell.com
    - url: https://user-data-ops.prod.icanbwell.com
  /users/{id}:
    delete:
      summary: Initiate user data deletion
      description: Endpoint to initiate a request to delete a user's profile and associated information from bwell's system.
      parameters:
      - name: id
        in: path
        required: true
        description: The user's client-specific identifier which will vary by client. Please check with bwell customer support to verify the id to be used here.
        schema:
          type: string
      responses:
        '202':
          description: Deletion request accepted and processing has started.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: User profile deletion initiated successfully.
        '401':
          description: Invalid HMAC signature.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Unauthorized
        '404':
          description: User not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: User not found
        '500':
          description: Server error when processing the request.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: There was an issue processing your request at this time. Please try again. If the problem persists contact bwell support at support@icanbwell.com.
      security:
      - HMACAuth: []
      - HMACContentSHA512: []
      - HMACHost: []
      - HMACDate: []
      - HMACClientUserToken: []
      - HMACClientKey: []
      tags:
      - Users
    servers:
    - url: https://user-data-ops.client-sandbox.icanbwell.com
    - url: https://user-data-ops.prod.icanbwell.com
components:
  securitySchemes:
    HMACAuth:
      type: apiKey
      in: header
      name: Authorization
      description: "# HMAC Authentication \nAuthorization using a secret key and signature content. To use HMAC authentication, clients need to generate an HMAC signature using their secret key. The signature should be included in the `Authorization` header as follows:\n```\nHMAC-SHA512 SignedHeaders=x-bwell-date;host;x-bwell-client-user-token;x-bwell-client-key;x-bwell-content-sha512&Signature=<hmac-sha512-signature>\n```\n## Authorization Assembly\nIn order to assemble the proper headers for HMAC authorization the following data is required:\n- HTTP Method\n- HTTP Path + Query Params\n- UTC Timestamp in RFC1123 format\n- DNS Host\n- bwell Client Key\n- Client User Token\n- Content Hash\n### Content Hash\nThe content hash is created by computing the SHA512 hash of the request content (an empty string is the intended content for a request with an empty body) and then converting the hash bytes into a Base64 string representation.\n### Signature \nThe HMAC signature is created by computing by HMAC SHA512 hash of the below template string followed by converting the hash bytes into a Base64 string representation:\n```\n\"$REQUEST_METHOD\\n$REQUEST_PATH_AND_QUERY\\n$TIMESTAMP;$DNS_HOST;$BWELL_CLIENT_USER_TOKEN;BWELL_CLIENT_KEY;$CONTENT_HASH\"\n```\nNOTE: The HMAC SHA512 created here will use the shared bwell client secret.\n##### Example\n```\n\"POST\\n/users/123/data-export\\nSun, 06 Nov 1994 08:49:37 GMT;api.yourservice.com;123456789;123456789;z4PhNX7vuL3xVChQ1m2AB9Yg5AULVxXcg/SpIdNs6c5H0NE8XYXysP+DGNKHfuwvY7kxvUdBeoGlODJ6+SfaPg=\"\n```\nNOTE:\n- Content hash above is SHA512 Base64 representation of an empty string.\n- Client key above is `123456789`.\n- Client user token above is `123456789`\n### Attach Headers\nWith all required data now computed attach the headers to the request.\n##### x-bwell-date\n```\nSun, 06 Nov 1994 08:49:37 GMT\n```\n##### x-bwell-client-user-token (example below)\n```\n123456789\n```\n##### x-bwell-client-key (example below)\n```\n123456789 \n```\n##### x-bwell-content-sha512\n```\nz4PhNX7vuL3xVChQ1m2AB9Yg5AULVxXcg/SpIdNs6c5H0NE8XYXysP+DGNKHfuwvY7kxvUdBeoGlODJ6+SfaPg=\n```\n##### Authorization\n```\nHMAC-SHA512 SignedHeaders=x-bwell-date;host;x-bwell-client-user-token;x-bwell-client-key;x-bwell-content-sha512&Signature=6aJFRj3g/vtp2VchaokB+sfOUrDfPGKhcErIh68D7m/WaJpIoThSraiT8Nj8uE+B8AU+WqXfW2ajHpZCDahhOA==\n```\nNOTE: Many HTTP clients will attach the `Host` header by default. Make sure this is the case for the HTTP client used to interface with this API.\n"
    HMACContentSHA512:
      type: apiKey
      in: header
      name: x-bwell-content-sha512
      description: The Base64 encoded SHA512 hash of request content.
    HMACHost:
      type: apiKey
      in: header
      name: Host
      description: The DNS Host associated with the request.
    HMACDate:
      type: apiKey
      in: header
      name: x-bwell-date
      description: UTC Timestamp in RFC1123 format.
    HMACClientUserToken:
      type: apiKey
      in: header
      name: x-bwell-client-user-token
      description: Client specific user authentication token.
    HMACClientKey:
      type: apiKey
      in: header
      name: x-bwell-client-key
      description: Client key. Provided to the client by bwell.
x-refined-from:
- b-well-user-data-operations-openapi.json
- b-well-users-api-openapi.yml
x-readme:
  explorer-enabled: true
  proxy-enabled: true