DP Technology (Bohrium) 数据集 (bohrium-dataset) API

数据集管理 — 创建、上传、下载、版本控制。免费。

Operations 12

GET /openapi/v2/ds/{id} 数据集详情
PUT /openapi/v2/ds/{id} 更新数据集信息
GET /openapi/v2/ds/{id}/version 版本列表
POST /openapi/v2/ds/{id}/version 创建新版本
GET /openapi/v2/ds/{id}/version/{version_id} 版本详情
DELETE /openapi/v2/ds/{id}/version/{version_id} 删除版本
POST /openapi/v2/ds/ 创建数据集(结尾斜杠必需)
PUT /openapi/v2/ds/commit 上传后提交
GET /openapi/v2/ds/quota/check 配额检查
GET /openapi/v2/ds/input/token 获取上传 token
GET /openapi/v2/ds/{id}/permission 数据集权限
GET /openapi/v2/ds/project 关联项目

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/dp-bohrium-dataset-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

dp-bohrium-dataset-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bohrium Open AI 科学小导师 (bohrium-mentor) AI 科学小导师 (bohrium-mentor) 数据集 (bohrium-dataset) 数据集 (bohrium-dataset) API
  description: 'Bohrium 平台对外 OpenAPI 的单一事实源(single source of truth)。


    本文档由仓库 `dptech-corp/bohrium-skills` 的 `docs/api/openapi.json` 维护,内容基于各 Skill(`zh/<skill>/SKILL.md`)中记录的真实接口生成;Apifox 定时从本仓库抓取并同步到 https://open.bohrium.com 。


    鉴权:所有接口使用 `Authorization: Bearer <BOHR_ACCESS_KEY>`。业务返回通常为 `{code, data, message}` 信封,`code==0` 成功,`code==2000` 未授权。


    计费端点在 operation 上以 `x-bohrium-price` 扩展标注机器可读价格,并在 description 末尾追加人类可读的「计费」行。


    说明:`bohrium-database`(SDK/CLI)与 `bohrium-sandbox`(CLI)不直接暴露 REST 端点,故本文档未收录其路径。'
  version: 2.0.0
servers:
- url: https://open.bohrium.com
  description: Bohrium OpenAPI 正式环境
security:
- bearerAuth: []
tags:
- name: 数据集 (bohrium-dataset)
  description: 数据集管理 — 创建、上传、下载、版本控制。免费。
paths:
  /openapi/v2/ds/{id}:
    get:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 数据集详情
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
    put:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 更新数据集信息
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                title:
                  type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /openapi/v2/ds/{id}/version:
    get:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 版本列表
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
    post:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 创建新版本
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                versionDesc:
                  type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /openapi/v2/ds/{id}/version/{version_id}:
    get:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 版本详情
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: version_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
    delete:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 删除版本
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: version_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /openapi/v2/ds/:
    post:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 创建数据集(结尾斜杠必需)
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                title:
                  type: string
                projectId:
                  type: string
                identifier:
                  type: string
              required:
              - title
              - projectId
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /openapi/v2/ds/commit:
    put:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 上传后提交
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                datasetId:
                  type: string
              required:
              - datasetId
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /openapi/v2/ds/quota/check:
    get:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 配额检查
      parameters:
      - name: projectId
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /openapi/v2/ds/input/token:
    get:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 获取上传 token
      parameters:
      - name: projectId
        in: query
        required: true
        schema:
          type: string
      - name: path
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /openapi/v2/ds/{id}/permission:
    get:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 数据集权限
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /openapi/v2/ds/project:
    get:
      tags:
      - 数据集 (bohrium-dataset)
      summary: 关联项目
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
components:
  schemas:
    ApiResponse:
      type: object
      properties:
        code:
          type: integer
          description: 0 成功,2000 未授权
        message:
          type: string
        data:
          type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Bohrium AccessKey,环境变量 BOHR_ACCESS_KEY,作为 Bearer token