Hevy Users API

The Users API from Hevy — 1 operation(s) for users.

Operations 1

GET /v1/user/info Get user info

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/hevy-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

hevy-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hevy API Docs Users API
  description: "\n      Welcome to Hevy's public API! We're just starting to roll this out and depending on your\n      feedback, we'll be adding more features and endpoints. Also, we make no guarantees that \n      we won't completely change the structure or abandon the project entirely so use it at\n      your own risk. Currently, this API is only available to Hevy Pro users. You can get your \n      key on our web app at https://hevy.com/settings?developer. If you have any questions,\n      please reach out to pavel@hevyapp.com \U0001F91D.\n      "
  version: 0.0.1
tags:
- name: Users
paths:
  /v1/user/info:
    get:
      summary: Get user info
      tags:
      - Users
      parameters:
      - in: header
        name: api-key
        schema:
          type: string
          format: uuid
        required: true
      responses:
        '200':
          description: The authenticated user's info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserInfoResponse'
        '404':
          description: User not found
components:
  schemas:
    UserInfo:
      type: object
      properties:
        id:
          type: string
          description: The user ID.
          example: 9c465af3-de7d-42bc-9c7c-f0170396358b
        name:
          type: string
          description: The user's display name.
          example: John doe
        url:
          type: string
          description: The user's public profile URL.
          example: https://hevy.com/user/jhon
    UserInfoResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/UserInfo'