Skip to content

Blueprints

Adrian Preuß edited this page Oct 25, 2025 · 41 revisions
List all available blueprints.
list(): Blueprint[] | null
Returns
Promise<Blueprint[] | null>
Example
import { Blueprints } from 'battlefield6-api';

const blueprints = await Blueprints.list();

console.log('Blueprints:', blueprints);

Get all blueprints by given id's.
get(ids): Blueprint[] | null
Parameters
Name Type Description
ids
BlueprintId[]
Array of blueprint ids.
Returns
Promise<Blueprint[] | null>
Example
import { Blueprints } from 'battlefield6-api';

const blueprints = await Blueprints.get([{
    id:         '1234567890',
    version:    'abcdefghijklmnopqrstuvwxyz'
}]);

console.log('Blueprints:', blueprints);

General

The actual abstraction layer for retrieving or sending data from the portal server.

⠀⠀ Installation

⠀⠀ Usage

⠀⠀ Examples

Backends

The actual abstraction layer for retrieving or sending data from the portal server.

⠀⠀ Blueprints

⠀⠀ Experience

⠀⠀ Mods⠀⠀⠀⠀

⠀⠀ PlayElements

Models

Model data for simplified use of the data.

⠀⠀ Blueprint

⠀⠀ Creator

⠀⠀ Design

⠀⠀ Map

⠀⠀ MapRotation

⠀⠀ Option

⠀⠀ PlayElement

⠀⠀ Settings

⠀⠀ Tag

⠀⠀ Team

⠀⠀ TeamComposition

Enum

Static data and informations.

⠀⠀ CreatorType

⠀⠀ OptionType

⠀⠀ Status


Clone this wiki locally