DevCycle [Beta] Semantic Patch API

The [Beta] Semantic Patch API from DevCycle — 1 operation(s) for [beta] semantic patch.

Operations 1

PATCH /v1/semantic/projects/{project}/audiences/{key} [Beta] Semantic Patch Update an Audience #

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-beta-semantic-patch-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-beta-semantic-patch-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DevCycle Bucketing Audiences [Beta] Semantic Patch [Beta] Semantic Patch 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: '[Beta] Semantic Patch'
paths:
  /v1/semantic/projects/{project}/audiences/{key}:
    patch:
      operationId: SemanticPatchController_semanticUpdate
      summary: '[Beta] Semantic Patch Update an Audience'
      description: Semantic Patch Update an Audience by ID or key
      parameters:
      - name: key
        required: true
        in: path
        description: A Audience key or ID
        schema:
          type: string
      - 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/AudiencePatchDto'
      responses:
        '200':
          description: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestErrorResponse'
        '401':
          description: ''
        '404':
          description: ''
      tags:
      - '[Beta] Semantic Patch'
components:
  schemas:
    AudiencePatchDto:
      type: object
      properties:
        instructions:
          type: array
          items:
            $ref: '#/components/schemas/AudiencePatchInstructionsDto'
      required:
      - instructions
    AudiencePatchInstructionsDto:
      type: object
      properties:
        op:
          type: string
          enum:
          - addFilterValues
          - removeFilterValues
        action:
          $ref: '#/components/schemas/AudiencePatchAction'
      required:
      - op
      - action
    AudiencePatchAction:
      type: object
      properties:
        values:
          type: object
          description: An array of values is required for all filters except when the comparator is 'exist' or '!exist'
        filterIndex:
          type: string
      required:
      - values
      - filterIndex
    BadRequestErrorResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: Response status code
          example: 400
        message:
          type: object
          description: Error details
          example:
          - key should not be empty
        error:
          type: string
          description: Error type
          example: Bad Request
      required:
      - statusCode
      - message
      - error
  securitySchemes:
    bearerAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Enter your DevCycle SDK token