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 and boostId (e.g., 8453:12).

Fetch a specific boost using its ID:

const boostId = '8453: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.