Apidog · Arazzo Workflow

Apidog Import Spec From URL And Verify

Version 1.0.0

Import an OpenAPI spec from a remote URL into a project, then export it back to verify.

1 workflow 1 source API 1 provider
View Spec View on GitHub AI CodingAPI DesignAPI LifecycleAPI TestingCollaborationDesign-FirstDocumentationMCPMockingPlatformArazzoWorkflows

Provider

apidog

Workflows

import-from-url-and-verify
Import a spec from a URL and verify by exporting it back.
Imports a remote OpenAPI/Swagger document by URL into the project, then exports the project as an OpenAPI document to confirm the import succeeded.
2 steps inputs: accessToken, apiVersion, projectId, specUrl outputs: importSuccess, verifiedDocument
1
importFromUrl
Import the specification fetched from the supplied URL into the project, auto-merging endpoints that already exist.
2
exportToVerify
Export the project as an OpenAPI 3.0 JSON document to verify the imported specification is present.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Apidog Import Spec From URL And Verify
  summary: Import an OpenAPI spec from a remote URL into a project, then export it back to verify.
  description: >-
    Pulls an OpenAPI or Swagger specification from a remote URL into an Apidog
    project, then immediately exports the project to confirm the specification
    landed and round-trips cleanly. Each step spells out its request inline —
    including the required Apidog API version header and bearer authentication —
    so the flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: importAndExportApi
  url: ../openapi/apidog-import-and-export-api-openapi.yml
  type: openapi
workflows:
- workflowId: import-from-url-and-verify
  summary: Import a spec from a URL and verify by exporting it back.
  description: >-
    Imports a remote OpenAPI/Swagger document by URL into the project, then
    exports the project as an OpenAPI document to confirm the import succeeded.
  inputs:
    type: object
    required:
    - accessToken
    - apiVersion
    - projectId
    - specUrl
    properties:
      accessToken:
        type: string
        description: Apidog personal API access token used as the Bearer Token.
      apiVersion:
        type: string
        description: The Apidog API version header value (e.g. 2024-03-28).
      projectId:
        type: integer
        description: The project ID to import into and export from.
      specUrl:
        type: string
        description: URL pointing to the OpenAPI/Swagger specification file.
  steps:
  - stepId: importFromUrl
    description: >-
      Import the specification fetched from the supplied URL into the project,
      auto-merging endpoints that already exist.
    operationId: importOpenApiData
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: X-Apidog-Api-Version
      in: header
      value: $inputs.apiVersion
    - name: projectId
      in: path
      value: $inputs.projectId
    requestBody:
      contentType: application/json
      payload:
        input:
          url: $inputs.specUrl
        options:
          endpointOverwriteBehavior: AUTO_MERGE
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      importSuccess: $response.body#/success
      endpointsCreated: $response.body#/data/endpoint/created
  - stepId: exportToVerify
    description: >-
      Export the project as an OpenAPI 3.0 JSON document to verify the imported
      specification is present.
    operationId: exportOpenApiData
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: X-Apidog-Api-Version
      in: header
      value: $inputs.apiVersion
    - name: projectId
      in: path
      value: $inputs.projectId
    requestBody:
      contentType: application/json
      payload:
        scope: ALL
        oasVersion: '3.0'
        exportFormat: JSON
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      exportSuccess: $response.body#/success
      verifiedDocument: $response.body#/data
  outputs:
    importSuccess: $steps.importFromUrl.outputs.importSuccess
    verifiedDocument: $steps.exportToVerify.outputs.verifiedDocument

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/apidog-import-from-url-and-verify-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.