Dynamic Events API

The Events API from Dynamic — 3 operation(s) for events.

Operations 3

GET /eventTypes Get event types #
GET /environments/{environmentId}/events Get environment events #
GET /environments/{environmentId}/events/{eventId} Get environment event 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/dynamic-xyz-events-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

dynamic-xyz-events-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dashboard Allowlists Events API
  description: Dashboard API documentation
  version: 1.0.0
servers:
- url: https://app.dynamicauth.com/api/v0
- url: https://app.dynamic.xyz/api/v0
- url: http://localhost:3333/api/v0
tags:
- name: Events
paths:
  /eventTypes:
    get:
      operationId: getEventTypes
      tags:
      - Events
      summary: Get event types
      responses:
        '200':
          description: List of event types
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventTypesResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '500':
          $ref: '#/components/responses/InternalServerError'
  /environments/{environmentId}/events:
    get:
      operationId: getEvents
      tags:
      - Events
      summary: Get environment events
      parameters:
      - $ref: '#/components/parameters/environmentId'
      - $ref: '#/components/parameters/cursor'
      - $ref: '#/components/parameters/resourceType'
      - $ref: '#/components/parameters/startDate'
      - $ref: '#/components/parameters/endDate'
      responses:
        '200':
          description: List of envrionment events
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventsResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '500':
          $ref: '#/components/responses/InternalServerError'
  /environments/{environmentId}/events/{eventId}:
    get:
      operationId: getEventById
      tags:
      - Events
      summary: Get environment event by id
      parameters:
      - $ref: '#/components/parameters/environmentId'
      - $ref: '#/components/parameters/eventId'
      responses:
        '200':
          description: Event for this project environment
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Event'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    resourceType:
      in: query
      name: resourceType
      schema:
        type: string
      required: false
      description: Resource type of event
    eventId:
      in: path
      name: eventId
      required: true
      description: ID of the event
      schema:
        $ref: '#/components/schemas/uuid'
    endDate:
      in: query
      name: endDate
      required: false
      schema:
        type: string
      description: End date of the event query
    startDate:
      in: query
      name: startDate
      required: false
      schema:
        type: string
      description: Start date of the event query
    cursor:
      in: query
      name: cursor
      schema:
        type: string
      required: false
      description: Cursor for pagination
    environmentId:
      in: path
      name: environmentId
      required: true
      description: ID of the environment
      schema:
        $ref: '#/components/schemas/uuid'
  schemas:
    EventContext:
      type: object
      properties:
        userId:
          type: string
        version:
          type: string
    Forbidden:
      type: object
      properties:
        error:
          type: string
          example: Access Forbidden
    Unauthorized:
      type: object
      properties:
        error:
          type: string
          example: No jwt provided!
    InternalServerError:
      type: object
      properties:
        error:
          type: string
          example: Internal Server Error
    EventTypesResponse:
      type: array
      items:
        $ref: '#/components/schemas/EventType'
    EventsResponse:
      type: object
      properties:
        cursor:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/Event'
    uuid:
      type: string
      pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
      minLength: 36
      maxLength: 36
      example: 95b11417-f18f-457f-8804-68e361f9164f
    EnvironmentEnum:
      type: string
      enum:
      - sandbox
      - live
    Event:
      type: object
      required:
      - eventId
      - environmentId
      - environmentName
      - eventName
      - timestamp
      - data
      - context
      properties:
        eventId:
          $ref: '#/components/schemas/uuid'
        environmentId:
          $ref: '#/components/schemas/uuid'
        environmentName:
          $ref: '#/components/schemas/EnvironmentEnum'
        eventAction:
          type: string
        eventName:
          type: string
        resourceType:
          type: string
        timestamp:
          type: string
          format: date-time
        data:
          type: object
        context:
          $ref: '#/components/schemas/EventContext'
    EventType:
      type: object
      required:
      - name
      - description
      properties:
        name:
          type: string
        description:
          type: string
  responses:
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Forbidden'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Unauthorized'
    InternalServerError:
      description: Internal Server Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InternalServerError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT