TileDB Array Tasks API

The array_tasks API from TileDB — 1 operation(s) for array_tasks.

Operations 1

GET /tasks/sidebar Get array tasks sidebar #

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/tiledb-array-tasks-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

tiledb-array-tasks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: TileDB Storage Platform REST API
  title: TileDB Storage Platform Array Tasks API
  version: 2.17.51
servers:
- url: /v1
security:
- BasicAuth: []
- ApiKeyAuth: []
tags:
- name: array_tasks
paths:
  /tasks/sidebar:
    parameters:
    - name: start
      in: query
      description: Fetch tasks created after this time, unix epoch in seconds, default 7 days ago
      schema:
        type: integer
        format: uint64
    - name: end
      in: query
      description: Fetch tasks created before this time, unix epoch in seconds, default now
      schema:
        type: integer
        format: uint64
    get:
      tags:
      - array_tasks
      operationId: getArrayTasksSidebar
      responses:
        200:
          description: sidebar metadata for task definitions for all arrays user has access to
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArrayTaskBrowserSidebar'
              example:
                organizations:
                - organization1
                - organization2
                - organization3
                result_count_for_all: 74
                result_count_by_namespace:
                  mockuser: 14
                  organization1: 6
                  organization2: 52
                  organization3: 2
        404:
          description: array tasks not found
        502:
          description: Bad Gateway
        default:
          description: error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                message: Error try again
                code: 1
      summary: Get array tasks sidebar
      x-summary-source: derived
components:
  schemas:
    ArrayTaskBrowserSidebar:
      description: Object for ui array tasks browser page
      type: object
      properties:
        organizations:
          description: list of all unique organizations the user is part of that have array tasks
          type: array
          x-omitempty: false
          items:
            type: string
        result_count_for_all:
          description: A count of "all"
          x-omitempty: false
          type: integer
        result_count_by_namespace:
          description: A map that includes the result count by namespace
          x-omitempty: false
          additionalProperties:
            type: integer
    Error:
      type: object
      properties:
        code:
          type: integer
          format: int64
        message:
          type: string
        request_id:
          type: string
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-TILEDB-REST-API-KEY
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          scopes:
            read: Grants read access
            write: Grants write access
            admin: Grants read and write access to administrative information
          authorizationUrl: https://oauth2.tiledb.com/oauth2/authorize
          tokenUrl: https://oauth2.tiledb.com/oauth2/token