REST API
Make HTTP requests to REST APIs with full control over every aspect of the request.
Overview
Echolon supports all standard HTTP methods and provides a clean interface for building REST API requests.
HTTP Methods
- GET — Retrieve data
- POST — Create new resources
- PUT — Update existing resources
- PATCH — Partial updates
- DELETE — Remove resources
- HEAD, OPTIONS — Metadata requests
- Custom — Add custom HTTP methods
Headers
Add custom headers to your requests. Common headers like Content-Type and Authorization are easily configured.
Request Body
Echolon supports multiple body formats:
- auto
- json
- html
- xml
- javascript
- raw
- hex
- base64