n8n-impl-integrations
Installation
SKILL.md
n8n API Integration Patterns
HTTP Request node configuration, authentication, pagination, response handling, and batch requests for n8n v1.x.
Quick Reference
| Task | Solution |
|---|---|
| Call a REST API | HTTP Request node with method, URL, and authentication |
| Authenticate with API key | Predefined credential or Generic Credential (Header Auth / Query Auth) |
| Authenticate with OAuth2 | Predefined OAuth2 credential with callback URL configuration |
| Handle paginated responses | HTTP Request node pagination options (offset, cursor, or link-based) |
| Download a file | HTTP Request node with Response Format set to File |
| Send JSON body | Body Content Type = JSON, provide key-value pairs or raw JSON |
| Send form data | Body Content Type = Form-Data (multipart or URL-encoded) |
| Batch API calls | Split In Batches node before HTTP Request node |
| Handle API errors | Enable Retry On Fail and/or Continue On Fail per node |
| Access response metadata | $response.statusCode, $response.headers, $response.body |
Related skills