Edge Delta Get Dashboards API

The Get Dashboards API from Edge Delta — 1 operation(s) for get dashboards.

Operations 1

GET /v1/orgs/{org_id}/dashboards

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/edge-delta-get-dashboards-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

edge-delta-get-dashboards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'Edge Delta API provides endpoints to manage your configs/integrations/rehydrations and more. Generate an API token to get started: https://app.edgedelta.com/admin/organization#api-tokens'
  title: Edge Delta Access Get Dashboards API
  contact:
    name: API Support
    email: support@edgedelta.com
  version: '1.0'
servers:
- url: https://api.edgedelta.com
tags:
- name: Get Dashboards
paths:
  /v1/orgs/{org_id}/dashboards:
    get:
      security:
      - ApiKeyAuth: []
      description: Returns all dashboards of users in the org.
      tags:
      - Get Dashboards
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      - description: Include definitions in the response
        name: include_definitions
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/dashboard.Dashboard'
components:
  schemas:
    dashboard.Screenshot:
      type: object
      properties:
        dark_url:
          type: string
        last_triggered_at:
          type: string
        last_updated_at:
          type: string
        light_url:
          type: string
        status:
          $ref: '#/components/schemas/dashboard.ScreenshotStatus'
    dashboard.SharingSecuritySettings:
      type: object
      properties:
        allowed_cidrs:
          type: array
          items:
            type: string
        prefilter:
          type: string
        shared_until:
          description: in ISO format
          type: string
    dashboard.TemplateVariable:
      type: object
      properties:
        identifier:
          type: string
        view_value: {}
    dashboard.SavedView:
      type: object
      properties:
        template_variables:
          type: array
          items:
            $ref: '#/components/schemas/dashboard.TemplateVariable'
    dashboard.Dashboard:
      type: object
      properties:
        created:
          type: string
        creator:
          type: string
        dashboard_id:
          type: string
        dashboard_name:
          type: string
        definition:
          type: object
          additionalProperties: {}
        description:
          type: string
        org_id:
          type: string
        resource_accesses:
          type: array
          items:
            $ref: '#/components/schemas/dashboard.ResourceAccess'
        saved_views:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/dashboard.SavedView'
        screenshot:
          $ref: '#/components/schemas/dashboard.Screenshot'
        shared_hash:
          type: string
        sharing_security_settings:
          $ref: '#/components/schemas/dashboard.SharingSecuritySettings'
        tags:
          type: array
          items:
            type: string
        updated:
          type: string
        updater:
          type: string
    dashboard.ScreenshotStatus:
      type: string
      enum:
      - pending
      - ok
      - error
      x-enum-varnames:
      - ScreenshotStatusPending
      - ScreenshotStatusOK
      - ScreenshotStatusError
    dashboard.ResourceAccess:
      type: object
      properties:
        domain:
          type: string
        facet_path:
          type: string
        query:
          type: string
        scope:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: X-ED-API-Token
      in: header