Batch read requests
Executes multiple read-only API requests in a single HTTP call. Each entry in
requests is a relative path (with optional query string) that would otherwise
be a separate GET request.
Responses are returned in the same order as the requests. If an individual request
fails, its result contains an error object instead of the resource data — the
overall response is still HTTP 200.
Only read operations are supported (no POST/PATCH/DELETE paths).
Authorizations
API key obtained from the Slog dashboard or returned by the signup/invite-redeem
flows. Pass as the slog-api-key header.
Body
Array of relative API paths to fetch.
[
"/tasks?filter[eq][status]=TODO&limit=10",
"/projects/proj_01jqproj0001",
"/teams/team_01jqteam0001/members"
]Response
Results in request order. Each result is either the resource response or an error object.
Successful resource response (shape varies by resource)
- Option 1
- Option 2