Jasper Users API

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

Operations 2

GET /v1/users Retrieve users #
GET /v1/users/{userId} Retrieve user by ID #

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

jasper-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jasper Users API
  description: Jasper API
  version: '1.0'
  contact: {}
servers:
- url: https://api.jasper.ai
tags:
- name: Users
  description: ''
paths:
  /v1/users:
    get:
      description: Retrieve all users in your workspace
      operationId: getAllUsers
      parameters:
      - name: limit
        required: false
        in: query
        description: The number of users per page to return in the response
        schema:
          example: 50
          type: number
      - name: page
        required: false
        in: query
        description: The desired page number of users
        schema:
          example: 1
          type: number
      responses:
        '200':
          description: Retrieve all users
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UsersResponse'
        '500':
          description: Internal server error. Unable to get users.
      security:
      - X-API-Key: []
      - oauth2:
        - user
      summary: Retrieve users
      tags:
      - Users
  /v1/users/{userId}:
    get:
      description: Retrieve a specific user in your workspace by ID
      operationId: getUser
      parameters:
      - name: userId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Retrieve user by ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersResponse'
        '404':
          description: Not found. May have an incorrect URL path.
        '500':
          description: Internal server error. Unable to get specified user.
      security:
      - X-API-Key: []
      - oauth2:
        - user
      summary: Retrieve user by ID
      tags:
      - Users
components:
  schemas:
    UsersData:
      type: object
      properties:
        id:
          type: string
          example: usr_bce766eaa4ef48e59da1d9602bfecf2d
        firstName:
          type: string
          example: Jane
        lastName:
          type: string
          example: Doe
        email:
          type: string
          description: The email address of the user
          example: jane.doe@jasper.ai
    UsersResponse:
      type: object
      properties:
        requestId:
          type: string
          example: bce766ea-a4ef-48e5-9da1-d9602bfecf2d
        resource:
          type: string
          example: users
        data:
          type: array
          items:
            $ref: '#/components/schemas/UsersData'
  securitySchemes:
    X-API-Key:
      type: apiKey
      in: header
      name: X-API-Key
      description: Workspace authentication using API key tokens in the X-API-Key header.
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://api.jasper.ai/oauth2/authorize
          tokenUrl: https://api.jasper.ai/oauth2/token
          refreshUrl: https://api.jasper.ai/oauth2/token
          scopes:
            user:read: Read user information
            user: Read and write user information
      description: User-level authentication using OAuth bearer tokens in the Authorization header.
x-readme:
  metrics-enabled: false