Dashbot Export API

Read API for enriched conversational data. GET /export returns a zipFile handle for all dimension data across a set of bot IDs over a date range, optionally filtered to named prompts; GET /index is the entry point that lists the endpoints available to the key. Authenticated with an API key in the Authorization header. 2 operations.

Operations 2

GET /index New Endpoint #
GET /export #

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/dashbot-export-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

dashbot-export-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Export API
servers:
- url: https://api.dimensionlabs.io
tags:
- name: Export
paths:
  /index:
    get:
      summary: New Endpoint
      description: This is your first endpoint! Edit this page to start documenting your API.
      operationId: get_new-endpoint
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  _links:
                    type: string
                    format: json
                    description: A collection of links to other endpoints this API supports.
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A message dictating what went wrong with this request
      parameters:
      - in: header
        name: Authorization
        schema:
          type: string
        required: true
        description: Required location for API Key.  See description for how to find your key.
      tags:
      - Export
  /export:
    get:
      description: ''
      operationId: get_export
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  zipFile:
                    type: string
                required:
                - zipFile
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
      parameters:
      - in: header
        name: Authorization
        schema:
          type: string
        description: Required location for API Key.  See description for how to find your key.
        required: true
      - in: query
        name: startDate
        schema:
          type: string
        required: true
        description: Required - Start Date in UNIX Milliseconds, YYYY-MM-DD or YYYY-DD-MM.  Inclusive.
      - in: query
        name: endDate
        schema:
          type: string
        required: true
        description: Required - End Date in UNIX Milliseconds, YYYY-MM-DD or YYYY-DD-MM. Exclusive.
      - in: query
        name: botIds
        schema:
          type: string
          default: 1,2,3
        required: true
        description: Comma-separated list of bot ids
      - in: query
        name: promptNames
        schema:
          type: string
        description: Comma-separated list of prompt names
      tags:
      - Export
x-readme:
  explorer-enabled: true
  proxy-enabled: true