HTTPX
Package: httpx · 8 nodes · HTTP client
Make HTTP requests — GET, POST, PUT, DELETE — with JSON parsing and header management.
Node Reference
| Node | Type | Inputs | Outputs |
|---|---|---|---|
| Get | statement | URL (str), Headers (any) | Response (http.Response) |
| Post | statement | URL (str), Body (any), Headers (any) | Response (http.Response) |
| Put | statement | URL (str), Body (any), Headers (any) | Response (http.Response) |
| Delete Req | statement | URL (str), Headers (any) | Response (http.Response) |
| Build Headers | expression | Key (str), Value (str), Key 2 (str), Value 2 (str) | Headers (any) |
| Get Json | expression | Response (http.Response) | Data (any) |
| Get Text | expression | Response (http.Response) | Text (str) |
| Get Status | expression | Response (http.Response) | Status (int) |