Celigo Imports API

The Imports API from Celigo — 2 operation(s) for imports.

Operations 5

GET /imports List imports #
POST /imports Create an import #
GET /imports/{_id} Get an import #
PUT /imports/{_id} Replace an import #
DELETE /imports/{_id} Delete an import #

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/celigo-imports-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

celigo-imports-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Celigo integrator.io Platform REST Connections Imports API
  description: 'Celigo integrator.io is an iPaaS platform exposing a RESTful Platform API for

    managing connections, exports, imports, flows, integrations, iClients, jobs,

    licenses, templates, and stored state. The API uses Bearer token authentication

    and enforces a token-bucket rate limit (1000 bucket, 300 tokens/sec refill).

    This best-effort OpenAPI is derived from the public documentation at

    https://docs.celigo.com/hc/en-us/categories/360001519091-Platform-API and the

    public GitHub docs at https://github.com/celigo/integrator-api-docs.

    '
  version: 1.0.0
  contact:
    name: Celigo
    url: https://www.celigo.com/
servers:
- url: https://api.integrator.io/v1
  description: Celigo integrator.io REST API
security:
- bearerAuth: []
tags:
- name: Imports
paths:
  /imports:
    get:
      tags:
      - Imports
      summary: List imports
      operationId: listImports
      responses:
        '200':
          description: Import list
    post:
      tags:
      - Imports
      summary: Create an import
      operationId: createImport
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Import'
      responses:
        '201':
          description: Created
  /imports/{_id}:
    get:
      tags:
      - Imports
      summary: Get an import
      operationId: getImport
      parameters:
      - $ref: '#/components/parameters/ResourceId'
      responses:
        '200':
          description: Import
    put:
      tags:
      - Imports
      summary: Replace an import
      operationId: replaceImport
      parameters:
      - $ref: '#/components/parameters/ResourceId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Import'
      responses:
        '200':
          description: Updated
    delete:
      tags:
      - Imports
      summary: Delete an import
      operationId: deleteImport
      parameters:
      - $ref: '#/components/parameters/ResourceId'
      responses:
        '204':
          description: Deleted
components:
  parameters:
    ResourceId:
      in: path
      name: _id
      required: true
      schema:
        type: string
        description: integrator.io 24-character resource id
  schemas:
    Import:
      type: object
      properties:
        _id:
          type: string
        name:
          type: string
        _connectionId:
          type: string
        adaptorType:
          type: string
        oneToMany:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Personal API token or OAuth 2.0 bearer token. Rate-limited using a

        token-bucket of 1000 tokens, refilled at 300 tokens per second.

        '