Skip to content

HTTP No Auth

Parameters for public HTTP connections without requiring authentication.


General Information:

Type ID Module Category
3 httplib api

NoAuthConnectionParams

Parameters:

No parameters.

Input Parameters:

Field Type Required Description Default value Examples
url HttpUrl Service endpoint full URL PydanticUndefined https://api.example.com/endpoint
headers Optional[dict[str, str]] Additional HTTP headers to include in the request None {"Authorization": "Bearer token", "Content-Type": "application/json"}
method Literal[GET, POST, PUT, DELETE, PATCH] HTTP method to use GET POST
body Optional[dict[str, Any]] JSON body of the request None {"key": "value"}
verify_ssl bool Whether to validate the SSL certificate True True

Example:

{
  "url": "https://api.example.com/public",
  "headers": {
    "Accept": "application/json"
  },
  "method": "GET",
  "body": null,
  "verify_ssl": true
}

Notes:

Useful for public APIs, open data services or endpoints