Documentation Index
Fetch the complete documentation index at: https://mintlify.com/sebamar88/bytekit/llms.txt
Use this file to discover all available pages before exploring further.
Powered by Mintlify
Auto-generate your docs
Batch multiple requests for efficient API calls
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/sebamar88/bytekit/llms.txt
Use this file to discover all available pages before exploring further.
import { BatchRequest } from "bytekit";
// or
import { BatchRequest } from "bytekit/batch-request";
const batch = new BatchRequest(api);
batch.add("/users/1");
batch.add("/users/2");
batch.add("/users/3");
const results = await batch.execute();
// Returns array of responses
const batch = new BatchRequest(api, {
maxBatchSize: 10,
batchDelayMs: 100
});