Nanonets External Integrations API

List external integrations connected to a Nanonets account (Postgres, MySQL, MSSQL, MongoDB, and other databases) and execute generic SQL queries against them in the context of a Nanonets workflow. Used by Database Matching Conditions and database lookup actions inside the no-code workflow builder.

Operations 2

GET /api/v2/externalIntegrations Get External Integrations #
POST /api/v2/externalIntegrations/{external_integration_id}/executequery Execute Query #

Documentation

Specifications

Other Resources

🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-async-ocr-predict-and-poll-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-async-url-predict-poll-approve-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-batch-review-pending-files-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-classify-image-and-branch-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-page-level-correct-and-approve-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-predict-and-assign-reviewer-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-predict-and-enrich-with-database-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-predict-correct-and-reexport-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-resolve-integration-and-query-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-sync-predict-and-review-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-upload-training-images-and-train-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/nanonets/refs/heads/main/arazzo/nanonets-upload-training-urls-and-train-workflow.yml

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/nanonets-external-integrations-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

nanonets-external-integrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nanonets External Integrations API
  description: 'Manage external database integrations linked to a Nanonets account and

    execute generic SQL-style queries against them inside a Nanonets workflow.

    Used by the Database Matching Conditions and database lookup workflow blocks.

    '
  version: 1.0.0
  contact:
    name: Nanonets
    url: https://nanonets.com
    email: support@nanonets.com
servers:
- url: https://app.nanonets.com
security:
- BasicAuth: []
tags:
- name: External Integrations
  description: List and query external database integrations.
paths:
  /api/v2/externalIntegrations:
    get:
      tags:
      - External Integrations
      summary: Get External Integrations
      description: List external integrations connected to the account.
      operationId: getExternalIntegrations
      responses:
        '200':
          description: List of external integrations.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalIntegration'
  /api/v2/externalIntegrations/{external_integration_id}/executequery:
    post:
      tags:
      - External Integrations
      summary: Execute Query
      description: Execute a generic SQL-style query against a connected external integration.
      operationId: executeQuery
      parameters:
      - name: external_integration_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - query
              properties:
                query:
                  type: string
                  example: select * from passports where dob='file_url'
      responses:
        '200':
          description: Query result rows.
          content:
            application/json:
              schema:
                type: object
                properties:
                  rows:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
components:
  schemas:
    ExternalIntegration:
      type: object
      properties:
        id:
          type: string
          example: 4013d779-c2f9-11eb-ba65-122daa108bc5
        email:
          type: string
          format: email
        name:
          type: string
        type:
          type: string
          example: postgresql
          enum:
          - postgresql
          - mysql
          - mssql
          - mongodb
        info:
          type: object
          additionalProperties: true
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic