Importing APIs
Import any REST API to use in your workflows. Multiple import methods available.
Import Methods
From OpenAPI/Swagger
Best for APIs with documentation:
- Go to Plugins > Import API
- Select OpenAPI/Swagger
- Enter URL or paste spec
- Review detected endpoints
- Click Import
From curl Command
Quick import from examples:
- Go to Plugins > Import API
- Select From curl
- Paste your curl command
- AI extracts endpoint details
- Review and import
Manual Configuration
Full control over setup:
- Go to Plugins > Import API
- Select Manual
- Enter base URL
- Add endpoints one by one
- Configure authentication
Configuring Imported APIs
Base URL
The root URL for all endpoints:
https://api.example.com/v1
Authentication
Choose auth method:
| Method | Configuration | |--------|---------------| | None | No auth required | | API Key | Header or query param | | Bearer | Token in Authorization header | | Basic | Username and password | | OAuth 2.0 | Full OAuth flow |
Headers
Add default headers:
- Content-Type
- Accept
- Custom headers
Endpoints
For each endpoint, configure:
- Method: GET, POST, PUT, DELETE
- Path:
/users/{id} - Parameters: Path, query, body
- Response: Expected structure
Using Imported APIs
In Workflows
- Add HTTP Request node
- Select your imported API
- Choose endpoint
- Fill parameters
- Connect to flow
Testing
Before using in workflows:
- Click Test on the endpoint
- Enter sample parameters
- View response
- Verify it works
Managing Imports
View Imported APIs
- Go to Plugins > My Imports
- See all imported APIs
- Click to edit or delete
Updating
When API changes:
- Open the imported API
- Click Re-import or edit manually
- Update affected workflows
Sharing
Share imported APIs with team:
- Open the API
- Click Share
- Choose team visibility
Best Practices
1. Use OpenAPI When Available
Most accurate import method.
2. Test All Endpoints
Verify each endpoint works before building workflows.
3. Document Your Imports
Add descriptions for team understanding.
4. Handle Errors
Configure error responses for robustness.
Next Steps
- OpenAPI Import - Detailed guide
- OAuth Connections - Secure auth
- Custom Plugins - Build reusable plugins