data.world instance admin API

The instance admin API from data.world — 3 operation(s) for instance admin.

Operations 3

PUT /instanceAdmin/agents/{agentid} Create a new user or update existing one #
POST /instanceAdmin/agents/{agentid}/deactivate Deactivate specified agent #
POST /instanceAdmin/agents/{agentid}/reactivate Reactivate specified agent #

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/data-world-instance-admin-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

data-world-instance-admin-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    name: Contact Us
    url: https://data.world/company/contact-us
  termsOfService: https://data.world/terms-policies
  title: data.world Public catalog relationships instance admin API
  version: '0'
  description: Manage relationships between catalog resources
servers:
- url: /v0
security:
- bearerAuth: []
tags:
- name: instance admin
paths:
  /instanceAdmin/agents/{agentid}:
    put:
      description: 'This operation is only usable in Private Instances and requires the instance admin role permission. See the

        [Get API Tokens](https://developer.data.world/docs/api-getting-started#/step-2-get-the-tokens) documentation

        for more information.'
      operationId: createOrUpdateAgent
      parameters:
      - description: agent id or username
        in: path
        name: agentid
        required: true
        schema:
          type: string
          minLength: 1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateOrUpdateUserRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessMessageDto'
          description: default response
      summary: Create a new user or update existing one
      tags:
      - instance admin
  /instanceAdmin/agents/{agentid}/deactivate:
    post:
      description: 'This operation is only usable in Private Instances and requires the instance admin role permission. See the

        [Get API Tokens](https://developer.data.world/docs/api-getting-started#/step-2-get-the-tokens) documentation

        for more information.'
      operationId: deactivateAgent
      parameters:
      - description: agent id or username
        in: path
        name: agentid
        required: true
        schema:
          type: string
          minLength: 1
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessMessageDto'
          description: default response
      summary: Deactivate specified agent
      tags:
      - instance admin
  /instanceAdmin/agents/{agentid}/reactivate:
    post:
      description: 'This operation is only usable in Private Instances and requires the instance admin role permission. See the

        [Get API Tokens](https://developer.data.world/docs/api-getting-started#/step-2-get-the-tokens) documentation

        for more information.'
      operationId: activateAgent
      parameters:
      - description: agent id or username
        in: path
        name: agentid
        required: true
        schema:
          type: string
          minLength: 1
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessMessageDto'
          description: default response
      summary: Reactivate specified agent
      tags:
      - instance admin
components:
  schemas:
    CreateOrUpdateUserRequest:
      type: object
      properties:
        assignments:
          type: array
          description: Organizations with groups that user should be assigned to. The requester needs to be an admin of the requested organizations.
          items:
            $ref: '#/components/schemas/UserAssignment'
          maxItems: 10
          minItems: 0
        credentials:
          type: string
          description: credentials
        displayName:
          type: string
          description: Human-readable organization or agent name
          maxLength: 128
          minLength: 0
        email:
          type: string
          description: email
          maxLength: 128
          minLength: 0
      required:
      - credentials
      - displayName
      - email
    UserAssignment:
      type: object
      properties:
        groups:
          type: array
          description: Groups in the organization that user should be assigned to
          items:
            type: string
            minLength: 1
          maxItems: 30
          minItems: 0
          uniqueItems: true
        orgAgentId:
          type: string
          description: Organization that user should be assigned to
      required:
      - orgAgentId
    SuccessMessageDto:
      type: object
      properties:
        message:
          type: string
          maxLength: 256
          minLength: 0
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http