Axiom Dashboards API

The Dashboards API from Axiom — 2 operation(s) for dashboards.

OpenAPI Specification

axiom-dashboards-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Axiom REST Annotations Dashboards API
  version: 1.0.0
  description: REST API for Axiom serverless log management and analytics. Manage datasets, ingest data, run queries, and administer annotations, dashboards, monitors, notifiers, tokens, users, views, and other resources.
servers:
- url: https://api.axiom.co
tags:
- name: Dashboards
paths:
  /dashboards:
    get:
      summary: List all dashboards
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Resource'
      tags:
      - Dashboards
    post:
      summary: Create dashboard
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Resource'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
      tags:
      - Dashboards
  /dashboards/{uid}:
    parameters:
    - in: path
      name: uid
      required: true
      schema:
        type: string
    get:
      summary: Retrieve dashboard
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
      tags:
      - Dashboards
    put:
      summary: Update dashboard
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Resource'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
      tags:
      - Dashboards
    delete:
      summary: Delete dashboard
      responses:
        '204':
          description: No Content
      tags:
      - Dashboards
components:
  schemas:
    Resource:
      type: object
      additionalProperties: true
x-generated-from: https://axiom.co/docs/restapi/introduction
x-generated-by: claude-crawl-2026-05-08