DevCycle User Profiles API

The User Profiles API from DevCycle — 1 operation(s) for user profiles.

Operations 2

GET /v1/projects/{project}/userProfile/current Get User Profile for the Current User in the specified Project #
PATCH /v1/projects/{project}/userProfile/current Create or Update User Profile for the Current User in the specified Project #

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/devcycle-user-profiles-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

devcycle-user-profiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DevCycle Bucketing Audiences User Profiles API
  description: Documents the DevCycle Bucketing API which provides an API interface to User Bucketing and for Server SDKs configured to use Cloud Bucketing.
  version: 1.3.0
servers:
- url: https://bucketing-api.devcycle.com/
tags:
- name: User Profiles
paths:
  /v1/projects/{project}/userProfile/current:
    get:
      operationId: UserProfilesController_findAll
      summary: Get User Profile for the Current User in the specified Project
      description: Get User Profile for the authenticated User in the specified Project
      parameters:
      - name: project
        required: true
        in: path
        description: A Project key or ID
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectUserProfile'
        '401':
          description: ''
        '403':
          description: ''
        '404':
          description: ''
      tags:
      - User Profiles
    patch:
      operationId: UserProfilesController_createOrUpdate
      summary: Create or Update User Profile for the Current User in the specified Project
      description: Create or Update a User Profile for Overrides
      parameters:
      - name: project
        required: true
        in: path
        description: A Project key or ID
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateUserProfileDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectUserProfile'
        '400':
          description: ''
        '401':
          description: ''
        '403':
          description: ''
        '404':
          description: ''
        '409':
          description: ''
      tags:
      - User Profiles
components:
  schemas:
    UpdateUserProfileDto:
      type: object
      properties:
        dvcUserId:
          type: string
          nullable: true
          description: 'DVC User Id for User Profile.

            Mirrors the SDK `user_id`, which is capped at 200 characters.'
          example: dvc_sdk_user_id
          maxLength: 200
    ProjectUserProfile:
      type: object
      properties:
        _id:
          type: string
          description: Auto-generated unique User Profile ID
          example: 61450f3daec96f5cf4a49946
        _project:
          type: string
          description: The Project associated with the User Profile
        a0_user:
          type: string
          description: ID of the User who created the User Profile
        dvcUserId:
          type: string
          nullable: true
          description: 'DVC User Id for User Profile.

            Mirrors the SDK `user_id`, which is capped at 200 characters.'
          example: dvc_sdk_user_id
          maxLength: 200
        createdAt:
          format: date-time
          type: string
          description: The date the Project User Profile was created
        updatedAt:
          format: date-time
          type: string
          description: The date the Project User Profile was last updated
      required:
      - _id
      - _project
      - a0_user
      - createdAt
      - updatedAt
  securitySchemes:
    bearerAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Enter your DevCycle SDK token