Logik.io Blueprint > Export API

Export Blueprints

Operations 3

POST /api/admin/v1/bulk/blueprints/export Initiate bulk export of blueprints
GET /api/admin/v1/job/{jobId} Retrieve job details by ID
GET /api/admin/v2/bulk/export/{jobId} Retrieve bulk export by job ID

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/logikio-blueprint-export-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

logikio-blueprint-export-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Logik.io Admin API - Blueprint Import/Export Blueprint > Export API
  description: APIs with which to import and export Logik.io Blueprints. Useful for taking backups and executing migrations among environments.
  version: 1.0.0
  contact:
    email: support@logik.io
servers:
- url: https://{tenant}.{sector}.logik.io
  description: Logik Environment
  variables:
    tenant:
      default: example
      description: Logik.io tenant
    sector:
      default: test
      description: Logik.io sector
security:
- bearerAuth: []
tags:
- name: Blueprint > Export
  description: Export Blueprints
paths:
  /api/admin/v1/bulk/blueprints/export:
    post:
      summary: Initiate bulk export of blueprints
      description: Initiate a bulk export of blueprints with the given payload.
      tags:
      - Blueprint > Export
      requestBody:
        description: Payload for initiating the bulk export
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
        required: true
      responses:
        200:
          description: Bulk export job created
          content:
            application/json:
              schema:
                type: object
                properties:
                  created:
                    type: string
                    format: date-time
                  modified:
                    type: string
                    format: date-time
                  id:
                    type: integer
                  jobType:
                    type: string
                  status:
                    type: string
  /api/admin/v1/job/{jobId}:
    get:
      summary: Retrieve job details by ID
      description: Retrieve details of a job by providing its ID.
      tags:
      - Blueprint > Export
      parameters:
      - name: jobId
        in: path
        description: Id of the job
        required: true
        schema:
          type: integer
      responses:
        200:
          description: Job details
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                  started:
                    type: string
                    format: date-time
                  finished:
                    type: string
                    format: date-time
                  jobType:
                    type: string
                  status:
                    type: string
  /api/admin/v2/bulk/export/{jobId}:
    get:
      summary: Retrieve bulk export by job ID
      description: Retrieve a bulk export file by providing the job ID.
      tags:
      - Blueprint > Export
      parameters:
      - name: jobId
        in: path
        description: Id of the bulk export job
        required: true
        schema:
          type: string
      responses:
        200:
          description: Bulk export file
          headers:
            Content-Disposition:
              description: Attachment filename
              schema:
                type: string
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Admin API Bearer Token