Skip to content

JSON Import

Import endpoints from an API Dev Studio JSON export file (.json). This completes the round-trip with the JSON export feature, letting you move endpoints between projects or share them with teammates.

The import follows a 4-step wizard:

  1. Click Import in the toolbar
  2. Select JSON (API Dev Studio)
  3. Click Select JSON File or click the drop zone
  4. Choose a .json file exported from API Dev Studio

The preview shows a table of endpoints that will be imported:

ColumnDescription
TypeEndpoint type (mock, proxy, webhook)
MethodHTTP method (GET, POST, etc.)
PathURL path
NameEndpoint name

Overwrite existing endpoints — Check this option to replace endpoints that already exist with the same path and method. When unchecked, duplicates are skipped.

Click Import N Endpoints to start. A progress indicator shows while endpoints are being created.

The summary shows three counts:

CountDescription
ImportedEndpoints successfully created
SkippedEndpoints that already existed (when overwrite is off)
ErrorsEndpoints that failed to import

Lists of imported and skipped endpoint paths are shown for review.

The JSON export file uses the apidevstudio-endpoints format:

{
"format": "apidevstudio-endpoints",
"version": "1.0",
"exported_at": "2026-01-15T10:30:00Z",
"project_name": "My API",
"endpoints": [
{
"type": "mock",
"name": "Get Users",
"path": "/api/users",
"method": "GET",
"enabled": true,
"config": { ... },
"operation_id": null,
"folder_path": ""
}
]
}