The Boost API allows you to fetch a single boost through the GET /boosts/:id endpoint.

Basic Usage

The id parameter is a combination of the chainId, the BoostCore address, and the boostId (e.g., 8453:0x378632819f39c74c4f56b1429e760739c5fb51b7:12).

Fetch a specific boost using its ID:

const boostId = '8453:0x378632819f39c74c4f56b1429e760739c5fb51b7:12';
const response = await fetch(
  `https://api-v2.boost.xyz/boosts/${boostId}`
);
const { boost } = await response.json();

For complete API details including all available parameters and response fields, see the API Reference.