COLLECTIONS
Import & Export
Bring in collections from Postman, OpenAPI specs, and cURL commands. Export to multiple formats for sharing, backup, and interoperability.
Postman Import
Import your existing Postman collections directly into API Studio with full structure preservation.
pm.environment, pm.globals) may need manual adjustment to use API Studio's scripting API.
OpenAPI / Swagger Import
Generate a full collection from any OpenAPI or Swagger spec — complete with folders, requests, and an environment.
base_url variableapiKey, http bearer/basic, oauth2) mapped to API Studio auth configcURL Import
Paste any cURL command and API Studio automatically parses it into a request.
import_curl tool-X, -H, -d, -F, --json, -u, --oauth2-bearer, -G, -IExample — paste this into the URL bar:
curl -X POST https://api.example.com/users \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-abc123" \
-d '{"name": "John", "email": "john@example.com"}'
See the Sending Requests page for the full list of supported cURL flags.
API Studio JSON Export
The native format — a lossless copy of your collection with all fields preserved.
collections.json entry.openpost/collections.json to git for version-controlled API collections that the whole team can share.
Postman Export
Generate a Postman-compatible collection file for sharing with teammates who use Postman.
OpenAPI Export
Generate an OpenAPI 3.0 specification from your collection — useful for documentation and API-first workflows.
openpost export openapi "Collection Name"export_openapi toolMultiple export paths:
| Method | How |
|---|---|
| GUI | Right-click collection → Export → OpenAPI 3.0 |
| CLI | openpost export openapi "Collection Name" |
| MCP | export_openapi tool via Management MCP |