data.world organizations API

The organizations API from data.world — 2 operation(s) for organizations.

Operations 2

POST /organizations/{agentid}/authorizations/{teamid} Authorize a Team to access an organization #
GET /organizations/{id} Get organization details #

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-organizations-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-organizations-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 Organizations API
  version: '0'
  description: Manage relationships between catalog resources
servers:
- url: /v0
security:
- bearerAuth: []
tags:
- name: organizations
paths:
  /organizations/{agentid}/authorizations/{teamid}:
    post:
      description: Authorize a Team to access an organization
      operationId: authorizeOrgAccess
      parameters:
      - description: organization agent ID
        in: path
        name: agentid
        required: true
        schema:
          type: string
          minLength: 1
      - description: team agent ID
        in: path
        name: teamid
        required: true
        schema:
          type: string
          minLength: 1
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessMessageDto'
          description: default response
      summary: Authorize a Team to access an organization
      tags:
      - organizations
  /organizations/{id}:
    get:
      description: Get organization details
      operationId: getOrganizationDetails
      parameters:
      - description: Organization ID.
        in: path
        name: id
        required: true
        schema:
          type: string
          minLength: 1
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgDetailsResponse'
          description: default response
      summary: Get organization details
      tags:
      - organizations
components:
  schemas:
    OrgDetailsResponse:
      type: object
      properties:
        avatarUrl:
          type: string
          description: URL that points to a small, graphical representation of an organization
          maxLength: 256
          minLength: 0
        company:
          type: string
          description: Company name
        created:
          type: string
          format: date-time
        description:
          type: string
          description: Short description of an organization.
        displayName:
          type: string
          description: Human-readable organization name
          maxLength: 128
          minLength: 0
        id:
          type: string
          description: Organization agentid
        location:
          type: string
          description: Company location
        summary:
          type: string
          description: Details of an organization.
        updated:
          type: string
          format: date-time
        website:
          type: string
          description: Company website URL
      required:
      - id
    SuccessMessageDto:
      type: object
      properties:
        message:
          type: string
          maxLength: 256
          minLength: 0
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http