APIMatic · Arazzo Workflow

APIMatic Import and Transform Specification

Version 1.0.0

Import an API spec and convert it to a different specification format.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub API TransformationCode GenerationDeveloper ExperienceDocumentationSDK GenerationArazzoWorkflows

Provider

apimatic

Workflows

import-transform
Import a spec and transform it into a target specification format.
Creates an API entity from an uploaded specification and converts it into the requested target format, returning the transformed definition.
2 steps inputs: authorization, file, format outputs: apiEntityId, transformedSpec
1
importSpec
Upload the API specification file as multipart form data to create a new API entity in APIMatic.
2
transformSpec
Transform the imported definition into the requested target format and return the converted specification as a binary file.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: APIMatic Import and Transform Specification
  summary: Import an API spec and convert it to a different specification format.
  description: >-
    A format-conversion pipeline. The workflow imports an API specification file
    to create an API entity, then transforms that definition into a target
    format such as OpenAPI 3.0 JSON or YAML, Swagger 2.0, RAML 1.0 or a Postman
    2.0 collection. The transform step returns the converted specification as a
    binary file. Every step spells out its request inline so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: apisApi
  url: ../openapi/apimatic-apis-api-openapi.yml
  type: openapi
- name: transformationApi
  url: ../openapi/apimatic-transformation-api-openapi.yml
  type: openapi
workflows:
- workflowId: import-transform
  summary: Import a spec and transform it into a target specification format.
  description: >-
    Creates an API entity from an uploaded specification and converts it into
    the requested target format, returning the transformed definition.
  inputs:
    type: object
    required:
    - authorization
    - file
    - format
    properties:
      authorization:
        type: string
        description: API key passed in the Authorization header.
      file:
        type: string
        description: The API specification file contents to import.
      format:
        type: string
        description: >-
          Target format for transformation. One of OpenApi3Json, OpenApi3Yaml,
          Swagger20, RAML10 or Postman20.
  steps:
  - stepId: importSpec
    description: >-
      Upload the API specification file as multipart form data to create a new
      API entity in APIMatic.
    operationId: importApiDefinition
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: multipart/form-data
      payload:
        file: $inputs.file
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      apiEntityId: $response.body#/id
      name: $response.body#/name
  - stepId: transformSpec
    description: >-
      Transform the imported definition into the requested target format and
      return the converted specification as a binary file.
    operationId: transformApiDefinition
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: apiEntityId
      in: path
      value: $steps.importSpec.outputs.apiEntityId
    requestBody:
      contentType: application/json
      payload:
        format: $inputs.format
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      transformedSpec: $response.body
  outputs:
    apiEntityId: $steps.importSpec.outputs.apiEntityId
    transformedSpec: $steps.transformSpec.outputs.transformedSpec

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/apimatic-import-transform-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.