AppDynamics Queries API

Query stored events using the AppDynamics Analytics Query Language (ADQL) for custom analytics and reporting.

Operations 1

POST /events/query Query analytics events using ADQL #

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/appdynamics-queries-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

appdynamics-queries-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AppDynamics Analytics Events Queries API
  description: The AppDynamics Analytics Events API allows developers to send custom analytics events from external data sources to the AppDynamics Events Service. This API supports creating custom event schemas, publishing event data, and querying stored events using the AppDynamics Analytics Query Language (ADQL). It enables organizations to correlate application performance data with custom business metrics and external data sources for deeper operational and business intelligence insights.
  version: 23.x
  contact:
    name: Splunk AppDynamics Support
    url: https://www.appdynamics.com/support
  termsOfService: https://www.cisco.com/c/en/us/about/legal/cloud-and-software.html
servers:
- url: https://{events-service-host}:9080
  description: AppDynamics Events Service
  variables:
    events-service-host:
      default: analytics.api.appdynamics.com
      description: The hostname of the AppDynamics Events Service endpoint.
security:
- apiKey: []
tags:
- name: Queries
  description: Query stored events using the AppDynamics Analytics Query Language (ADQL) for custom analytics and reporting.
paths:
  /events/query:
    post:
      operationId: queryEvents
      summary: Query analytics events using ADQL
      description: Executes an Analytics Query Language (ADQL) query against stored events and returns the results. Supports both simple text-formatted queries and JSON-formatted queries that accommodate multiple queries per call. Rate limited to 450 requests per minute per account and 145 requests per minute per API key.
      tags:
      - Queries
      parameters:
      - $ref: '#/components/parameters/accountName'
      - $ref: '#/components/parameters/apiKey'
      - name: start
        in: query
        required: false
        description: The start time for the query in ISO 8601 format or relative time notation.
        schema:
          type: string
      - name: end
        in: query
        required: false
        description: The end time for the query in ISO 8601 format or relative time notation.
        schema:
          type: string
      - name: limit
        in: query
        required: false
        description: The maximum number of results to return.
        schema:
          type: integer
          minimum: 1
          maximum: 10000
      requestBody:
        required: true
        content:
          application/vnd.appd.events+text;v=2:
            schema:
              type: string
              description: An ADQL query string such as SELECT * FROM mySchema WHERE condition.
          application/vnd.appd.events+json;v=2:
            schema:
              type: array
              description: An array of ADQL query objects for batch query execution.
              items:
                type: object
                properties:
                  query:
                    type: string
                    description: The ADQL query string.
                  mode:
                    type: string
                    description: The query execution mode.
                  limit:
                    type: integer
                    description: The maximum number of results for this query.
      responses:
        '200':
          description: Query executed successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/QueryResult'
        '400':
          description: Bad request - invalid ADQL query syntax
        '401':
          description: Unauthorized - invalid account name or API key
        '429':
          description: Too many requests - rate limit exceeded
components:
  parameters:
    apiKey:
      name: X-Events-API-Key
      in: header
      required: true
      description: The API key for authenticating with the Events Service.
      schema:
        type: string
    accountName:
      name: X-Events-API-AccountName
      in: header
      required: true
      description: The AppDynamics account name for authentication.
      schema:
        type: string
  schemas:
    QueryResult:
      type: object
      description: The result of an ADQL query execution containing column metadata and data rows.
      properties:
        fields:
          type: array
          description: The column definitions for the query results.
          items:
            type: object
            properties:
              label:
                type: string
                description: The column label.
              field:
                type: string
                description: The field name.
              type:
                type: string
                description: The data type of the column.
        results:
          type: array
          description: The data rows returned by the query.
          items:
            type: array
            items: {}
        moreData:
          type: boolean
          description: Indicates whether additional data is available beyond the limit.
        totalCount:
          type: integer
          description: The total number of results matching the query.
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-Events-API-Key
      description: The API key for authenticating with the Events Service. Provided alongside the X-Events-API-AccountName header.
externalDocs:
  description: Analytics Events API Documentation
  url: https://docs.appdynamics.com/appd/23.x/latest/en/extend-appdynamics/appdynamics-apis/analytics-events-api