Nexla Marketplace API

Operations for managing the marketplace domains and items.

Operations 13

GET /marketplace/domains Get marketplace domains #
POST /marketplace/domains Create marketplace domains #
GET /marketplace/domains/for_org Get marketplace domains for organization #
GET /marketplace/domains/{domain_id} Get a single marketplace domain #
PUT /marketplace/domains/{domain_id} Update a single marketplace domain #
POST /marketplace/domains/{domain_id} Create a single marketplace domain #
DELETE /marketplace/domains/{domain_id} Delete a single marketplace domain #
GET /marketplace/domains/{domain_id}/items Get marketplace items for a domain #
POST /marketplace/domains/{domain_id}/items Create a marketplace item for a domain #
GET /marketplace/domains/{domain_id}/custodians Get custodians for a marketplace domain #
PUT /marketplace/domains/{domain_id}/custodians Update custodians for a marketplace domain #
POST /marketplace/domains/{domain_id}/custodians Add custodians to a marketplace domain #
DELETE /marketplace/domains/{domain_id}/custodians Remove custodians from a marketplace domain #

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/nexla-marketplace-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

nexla-marketplace-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Nexla Rest Marketplace API
  termsOfService: https://nexla.com/terms-of-service/
  contact:
    name: Nexla Support
    url: https://docs.nexla.com
    email: support@nexla.com
  license:
    name: Nexla
    url: https://nexla.com
  x-logo:
    url: https://cdn.nexla.io/ui/assets/brand/v2/nexla-logo-color-portrait.svg
    backgroundColor: '#ffffff'
  description: '# Introduction


    The Nexla API is a REST-ful API used to easily create and manage resources in Nexla in ways that best fit any use case.'
servers:
- url: https://{nexla-api-host}
  variables:
    nexla-api-host:
      default: dataops.nexla.io/nexla-api
      description: Nexla API URL your Nexla instance
security:
- NexlaSessionToken: []
tags:
- name: Marketplace
  description: Operations for managing the marketplace domains and items.
paths:
  /marketplace/domains:
    get:
      tags:
      - Marketplace
      operationId: get_domains
      summary: Get marketplace domains
      description: Use this endpoint to fetch marketplace domains. You need a read permission for the org.
      parameters:
      - $ref: '#/components/parameters/accept'
      responses:
        '200':
          $ref: '#/components/responses/domains_many'
        '403':
          description: Forbidden
    post:
      tags:
      - Marketplace
      operationId: create_domains
      summary: Create marketplace domains
      description: Use this endpoint to create marketplace domains. You need a manage permission for the org.
      parameters:
      - $ref: '#/components/parameters/accept'
      requestBody:
        content:
          application/vnd.nexla.api.v1+json:
            schema:
              $ref: '#/components/schemas/MarketplaceDomainCreate'
      responses:
        '200':
          $ref: '#/components/responses/domains_many'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
  /marketplace/domains/for_org:
    get:
      tags:
      - Marketplace
      operationId: get_domains_for_org
      summary: Get marketplace domains for organization
      description: Use this endpoint to fetch marketplace domains for a specific organization. You need a read permission for the org.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: org_id
        in: query
        description: The organization ID to filter domains by
        required: true
        schema:
          type: integer
      responses:
        '200':
          $ref: '#/components/responses/domains_many'
        '403':
          description: Forbidden
  /marketplace/domains/{domain_id}:
    get:
      tags:
      - Marketplace
      operationId: get_domain
      summary: Get a single marketplace domain
      description: Use this endpoint to fetch a marketplace domain. You need a read permission for the domain.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: domain_id
        in: path
        description: The unique ID of the domain that needs to be fetched.
        required: true
        schema:
          type: integer
      responses:
        '200':
          $ref: '#/components/responses/domains_one'
        '403':
          description: Forbidden
    put:
      tags:
      - Marketplace
      operationId: update_domain
      summary: Update a single marketplace domain
      description: Use this endpoint to update a marketplace domain. You need a manage permission for the domain.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: domain_id
        in: path
        description: The unique ID of the domain that needs to be updated.
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/vnd.nexla.api.v1+json:
            schema:
              $ref: '#/components/schemas/MarketplaceDomainCreate'
      responses:
        '200':
          $ref: '#/components/responses/domains_one'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    post:
      tags:
      - Marketplace
      operationId: create_domain
      summary: Create a single marketplace domain
      description: Use this endpoint to create a marketplace domain. You need a manage permission for the org.
      parameters:
      - $ref: '#/components/parameters/accept'
      requestBody:
        content:
          application/vnd.nexla.api.v1+json:
            schema:
              $ref: '#/components/schemas/MarketplaceDomainCreate'
      responses:
        '200':
          $ref: '#/components/responses/domains_one'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    delete:
      tags:
      - Marketplace
      operationId: delete_domain
      summary: Delete a single marketplace domain
      description: Use this endpoint to delete a marketplace domain. You need a manage permission for the domain to delete it.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: domain_id
        in: path
        description: The unique ID of the domain that needs to be deleted.
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Successfully deleted
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
  /marketplace/domains/{domain_id}/items:
    get:
      tags:
      - Marketplace
      operationId: get_domain_items
      summary: Get marketplace items for a domain
      description: Use this endpoint to fetch marketplace items for a domain. You need a read permission for the domain.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: domain_id
        in: path
        description: The unique ID of the domain.
        required: true
        schema:
          type: integer
      responses:
        '200':
          $ref: '#/components/responses/domain_items_many'
        '403':
          description: Forbidden
    post:
      tags:
      - Marketplace
      operationId: create_domain_item
      summary: Create a marketplace item for a domain
      description: Use this endpoint to create a marketplace item for a domain. You need a manage permission for the domain.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: domain_id
        in: path
        description: The unique ID of the domain.
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/vnd.nexla.api.v1+json:
            schema:
              $ref: '#/components/schemas/MarketplaceDomainsItemCreate'
      responses:
        '200':
          $ref: '#/components/responses/domain_items_many'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
  /marketplace/domains/{domain_id}/custodians:
    get:
      tags:
      - Marketplace
      operationId: get_domain_custodians
      summary: Get custodians for a marketplace domain
      description: Use this endpoint to fetch custodians for a marketplace domain. You need a read permission for the domain.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: domain_id
        in: path
        description: The unique ID of the domain.
        required: true
        schema:
          type: integer
      responses:
        '200':
          $ref: '#/components/responses/custodians_many'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    put:
      tags:
      - Marketplace
      operationId: update_domain_custodians
      summary: Update custodians for a marketplace domain
      description: Use this endpoint to update custodians for a marketplace domain. You need a manage permission for the domain.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: domain_id
        in: path
        description: The unique ID of the domain.
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/vnd.nexla.api.v1+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/CustodiansPayload'
      responses:
        '200':
          $ref: '#/components/responses/custodians_many'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    post:
      tags:
      - Marketplace
      operationId: add_domain_custodians
      summary: Add custodians to a marketplace domain
      description: Use this endpoint to add custodians to a marketplace domain. You need a manage permission for the domain.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: domain_id
        in: path
        description: The unique ID of the domain.
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/vnd.nexla.api.v1+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/CustodiansPayload'
      responses:
        '200':
          $ref: '#/components/responses/custodians_many'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    delete:
      tags:
      - Marketplace
      operationId: remove_domain_custodians
      summary: Remove custodians from a marketplace domain
      description: Use this endpoint to remove custodians from a marketplace domain. You need a manage permission for the domain.
      parameters:
      - $ref: '#/components/parameters/accept'
      - name: domain_id
        in: path
        description: The unique ID of the domain that needs to be deleted.
        required: true
        schema:
          type: integer
      requestBody:
        content:
          application/vnd.nexla.api.v1+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/CustodiansPayload'
      responses:
        '200':
          description: Successfully deleted
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
components:
  schemas:
    CustodiansResponse:
      type: array
      items:
        type: object
        properties:
          id:
            type: integer
          email:
            type: string
          full_name:
            type: string
    MarketplaceDomainsItemCreate:
      type: object
      properties:
        name:
          type: string
        description:
          type:
          - 'null'
          - string
        data_set_id:
          type: integer
          description: ID of the org's dataset that marketplace item should present. User should have a `read` permission for the dataset.
    MarketplaceDomain:
      type: object
      properties:
        id:
          type: integer
        org_id:
          type:
          - 'null'
          - integer
        owner_id:
          type:
          - 'null'
          - integer
        name:
          type: string
        description:
          type: string
        parent_id:
          type: integer
          description: ID of the parent domain. Domains may build a hierarchy.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    MarketplaceDomainCreate:
      type: object
      properties:
        org_id:
          type:
          - 'null'
          - integer
        owner_id:
          type:
          - 'null'
          - integer
        name:
          type: string
        description:
          type: string
        parent_id:
          type: integer
          description: ID of the parent domain. Domains may build a hierarchy.
        custodians:
          $ref: '#/components/schemas/CustodiansPayload'
    CustodiansPayload:
      type: array
      items:
        type: object
        properties:
          id:
            type: integer
          email:
            type: string
    MarketplaceDomainsItem:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        description:
          type:
          - 'null'
          - string
        data_samples:
          type: array
          items:
            type: object
            additionalProperties: true
          description: Data samples coming from data sets that the marketplace item presents.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  responses:
    domains_many:
      description: List of marketplace domains
      content:
        application/vnd.nexla.api.v1+json:
          schema:
            type: array
            items:
              $ref: '#/components/schemas/MarketplaceDomain'
    domains_one:
      description: Single marketplace domain
      content:
        application/vnd.nexla.api.v1+json:
          schema:
            $ref: '#/components/schemas/MarketplaceDomain'
    custodians_many:
      description: List of custodians
      content:
        application/vnd.nexla.api.v1+json:
          schema:
            $ref: '#/components/schemas/CustodiansResponse'
    domain_items_many:
      description: List of marketplace domain items
      content:
        application/vnd.nexla.api.v1+json:
          schema:
            type: array
            items:
              $ref: '#/components/schemas/MarketplaceDomainsItem'
  parameters:
    accept:
      name: Accept
      in: header
      schema:
        type: string
        enum:
        - application/vnd.nexla.api.v1+json
        - application/json
        description: 'Setting to `application/vnd.nexla.api.v1+json` is recommended.

          '
  securitySchemes:
    NexlaSessionToken:
      type: http
      scheme: Bearer
      bearerFormat: JWT
      description: "The first step in calling the Nexla API or Nexla CLI is to fetch a Session access token by logging on to your Nexla UI instance. This ensures that your authentication is performed through your organization's preferred Identity Provider.\n\nTo fetch an access token from the Nexla UI, simply go to your Nexla UI instance, and try the route `/token`. For example, if your Nexla UI instance is at `https://dataops.nexla.io`, open `https://dataops.nexla.io/token` in the browser. \n\nThis will automatically route you to a login page, ask you to authenticate using your preferred Identity Provider, and, upon successful authentication, route you to a page where you can copy the Access Token.\n\nUsage format: `Bearer <JWT>`.\n"
    NexlaApiKeyQuery:
      type: apiKey
      name: api_key
      in: query
      description: '> **Important:** Never share your API keys. Keep them guarded and secure. If you think the key has been compromised, you can rotate the API key by calling relevant API Key management endpoints.


        The platform generates a unique API key for this resource. Add the API key as a query parameter to authenticate this request.

        Usage: `?api_key=<api-key>`

        '
    NexlaApiKeyHeader:
      type: http
      scheme: Basic
      description: '> **Important:** Never share your API keys. Keep them guarded and secure. If you think the key has been compromised, you can rotate the API key by calling relevant API Key management endpoints.


        The platform generates a unique API key for this resource. Add the API key as an authorization header to authenticate this request.

        Usage format: `Basic <api-key>`

        '
    basicAuth:
      type: http
      scheme: basic
    GoogleSSOToken:
      type: http
      scheme: Bearer
      bearerFormat: JWT
      description: 'The token that is used when logging into Nexla via Google SSO.

        '
x-tagGroups:
- name: Session
  tags:
  - Session Management
- name: Integrate
  tags:
  - Flows
  - Sources
  - Destinations (Data Sinks)
  - Nexsets (Data Sets)
  - Credentials
  - Data Maps
  - Code Containers
  - Transforms
  - Projects
- name: Monitor
  tags:
  - Notifications
  - Metrics
  - Audit Logs
  - Quarantine Settings
- name: Collaborate
  tags:
  - Access Control
- name: Account Management
  tags:
  - Organizations
  - Users
  - User Settings
  - Teams
  - Gen AI Configs
- name: Real-Time Events
  tags:
  - Webhooks
- name: Rate Limiting
  tags:
  - Limits
- name: Marketplace
  tags:
  - Marketplace
- name: Self Sign-Up
  tags:
  - Self Sign-Up
  - Self Sign-Up Admin
- name: Async Tasks
  tags:
  - Async Tasks