Introduction
This documentation describes the Human Lambdas API
Last updated
Was this helpful?
This documentation describes the Human Lambdas API
Last updated
Was this helpful?
The following pages cover everything you should be able to do through the API's various endpoints.
The API is served from the same endpoint as the front end. This is if running locally.
The Human Lambdas API expects an HTTP Authorization header with a valid API key in order to accept the request. You can generate an API key in the Settings section of your organization's Human Lambdas account.
Here is how the Authorization header should look like:
Here's how you can include the appropriate authenticator header with curl
in your terminal:
Endpoints that list information have support for pagination. By default, pagination is set to 100 items. Pagination is done through the limit
and offset
parameters in the request URL's query string.
For example:
https://api.humanlambdas.com/$API_RESOURCE_PATH?limit=2
will return items 0
and 1
on the list.
https://api.humanlambdas.com/$API_RESOURCE_PATH?limit=2&offset=2
will return items 2
and 3
on the list.
Here's an example of a paginated response: