Cracked API Datasets API

The Datasets API from Cracked API — 2 operation(s) for datasets.

Operations 3

GET /datasets Datasets in this workspace #
GET /datasets/{id} Read a dataset: json (paged by cursor=seq), csv (flattened one level) or ndjson #
DELETE /datasets/{id} Delete a dataset and its rows #

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/cracked-datasets-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

cracked-datasets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cracked Datasets API
  version: 0.3.0
  description: Discover, inspect and run 67,000+ agent tools from one balance. Agents can register their own workspace at POST https://cracked.ai/v1/agents/register ($1 trial credit, no human needed) and earn $5 of credit for every workspace that signs up through their referral link (GET https://cracked.ai/v1/referrals).
  contact:
    email: support@cracked.ai
servers:
- url: https://cracked.ai/v1
tags:
- name: Datasets
paths:
  /datasets:
    get:
      summary: Datasets in this workspace
      security:
      - bearer: []
      responses:
        '200':
          description: Datasets
      tags:
      - Datasets
      operationId: getDatasets
      x-operation-id-source: derived
  /datasets/{id}:
    get:
      summary: 'Read a dataset: json (paged by cursor=seq), csv (flattened one level) or ndjson'
      security:
      - bearer: []
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: format
        in: query
        schema:
          type: string
          enum:
          - json
          - csv
          - ndjson
          default: json
      - name: limit
        in: query
        schema:
          type: integer
          maximum: 1000
      - name: cursor
        in: query
        schema:
          type: integer
      - name: download
        in: query
        schema:
          type: integer
          enum:
          - 1
      responses:
        '200':
          description: Rows (application/json, text/csv or application/x-ndjson)
      tags:
      - Datasets
      operationId: getDatasetsById
      x-operation-id-source: derived
    delete:
      summary: Delete a dataset and its rows
      security:
      - bearer: []
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Deleted
      tags:
      - Datasets
      operationId: deleteDatasetsById
      x-operation-id-source: derived
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: ck_live_ API key or OAuth access token