Optimizely Attribution API

Get a list of bucketing decisions for a visitor.

Operations 1

GET /attribution/{account_id}/visitor/{visitor_id} Get bucketing information for a visitor #

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/optimizely-attribution-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

optimizely-attribution-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Optimizely Attribution API
  version: '2.0'
  description: Get a list of bucketing decisions for a visitor.
servers:
- url: https://api.optimizely.com/v2
security:
- apiKey: []
- OAuth2:
  - read
  - write
tags:
- description: Get a list of bucketing decisions for a visitor.
  name: Attribution
paths:
  /attribution/{account_id}/visitor/{visitor_id}:
    get:
      description: Get a list of experiments within a project a visitor has been exposed to
      operationId: get_bucketing_history
      parameters:
      - description: The unique identifier of the Optimizely Account
        in: path
        name: account_id
        required: true
        schema:
          format: int64
          type: integer
      - description: The Optimizely User ID of the visitor
        in: path
        name: visitor_id
        required: true
        schema:
          type: string
      - description: Start of the time interval (inclusive) used to filter the bucketing decisions. The time is formatted in ISO 8601.
        in: query
        name: start_time
        schema:
          format: date-time
          type: string
      - description: End of the time interval (inclusive) used to filter the bucketing decisions. The time is formatted in ISO 8601.
        in: query
        name: end_time
        schema:
          format: date-time
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BucketingInformation'
          description: Return bucketing information
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Invalid credentials
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: You do not have permission to access bucketing history information
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Unexpected error
      summary: Get bucketing information for a visitor
      tags:
      - Attribution
      x-release-state: alpha
components:
  schemas:
    BucketingInformationItem:
      properties:
        campaign_id:
          description: The unique identifier of the Campaign
          example: 2056053765
          format: int64
          type: integer
        experiment_id:
          description: The unique identifier of the Experiment
          example: 9387397797
          format: int64
          type: integer
        is_holdback:
          description: Is the visitor bucketed into a variation or a holdback
          type: boolean
        timestamp:
          description: The timestamp of the bucketing decision on the client side
          example: 1545871675000
          format: int64
          type: integer
        variation_id:
          description: The unique identifier of the Variation
          example: 5042153527
          format: int64
          type: integer
      type: object
    Error:
      properties:
        code:
          type: string
        message:
          type: string
        messages:
          type: object
        uuid:
          format: uuid
          type: string
      type: object
    BucketingInformation:
      properties:
        account_id:
          description: ID of the Account
          example: 1000
          format: int64
          type: integer
        bucketing_history:
          description: Array of bucketing information items
          items:
            $ref: '#/components/schemas/BucketingInformationItem'
          type: array
        visitor_id:
          description: The unique identifier of the visitor
          example: fa74a14b-1f3a-463d-aa98-2f7124ee6fc3
          format: uuid
          readOnly: true
          type: string
      type: object
  securitySchemes:
    OAuth2:
      description: Write applications that authenticate with the REST API via OAuth 2.0. Or, to authenticate using a personal token, see https://docs.developers.optimizely.com/web/docs/personal-token
      flows:
        authorizationCode:
          authorizationUrl: https://app.optimizely.com/oauth2/authorize
          scopes:
            all: Full access to your account
          tokenUrl: https://app.optimizely.com/oauth2/token
      type: oauth2
    apiKey:
      scheme: bearer
      type: http