Overview
The Destiny The Game API (Bungie Platform API) gives developers access to data from the popular Destiny franchise, including player stats, character info, and game content. You can retrieve detailed player histories, item inventories, and clan data for building companion apps. An API key from Bungie is required, making it straightforward to set up.
Beginner Tip
Register for a free API key at https://www.bungie.net/en/Application and always include the X-API-Key header in every request. Start with public endpoints that do not require OAuth before diving into player-specific data.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://www.bungie.net/Platform/Destiny2/Manifest/
- Result
- HTTP 200 · application/json · 188,873 bytes · compressed
- Response time
- 229 ms (median of 3) · fastest 154 ms
- Transport
- TLSv1.3 · TLS_AES_256_GCM_SHA384 · certificate issued by GoDaddy.com, Inc.
- Browser CORS
- Allowed — Access-Control-Allow-Origin: https://apisscore.com
- Served by
- cloudflare
- Recorded
- 2026-08-10
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Captured Response
Captured from a real request to https://www.bungie.net/Platform/Destiny2/Manifest/ on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
{
"Response": {
"version": "244213.26.06.29.2000-1-bnet.65583",
"mobileAssetContentPath": "/common/destiny2_content/sqlite/asset/asset_sql_content_fa55ac6bc992d81f23d713581245f0f8.content",
"mobileGearAssetDataBases": [
{
"…": "(2 more fields)"
}
],
"mobileWorldContentPaths": {
"en": "/common/destiny2_content/sqlite/en/world_sql_content_63192fbedb077a28fdb157f4ce21fec7.content",
"fr": "/common/destiny2_content/sqlite/fr/world_sql_content_0389686524b0d09ae8ecc92b61221ecb.content",
"es": "/common/destiny2_content/sqlite/es/world_sql_content_e308653ba8d5f17164ce4602825ea2ac.content",
"es-mx": "/common/destiny2_content/sqlite/es-mx/world_sql_content_0dd7a026fc52d0fcc7c532062ca1be33.content",
"de": "/common/destiny2_content/sqlite/de/world_sql_content_697e1aab35c401c60acd28c45c05aa7e.content",
"it": "/common/destiny2_content/sqlite/it/world_sql_content_8dd6c233eefe83fc9ad09aeed1461761.content",
"ja": "/common/destiny2_content/sqlite/ja/world_sql_content_4e522111bd90095a163ae86738311ef8.content",
"pt-br": "/common/destiny2_content/sqlite/pt-br/world_sql_content_b7a1560d397f17c895d4fa45281a15b4.content",
"ru": "/common/destiny2_content/sqlite/ru/world_sql_content_a2f25a4d7000919cb44790b84509cb87.content",
"pl": "/common/destiny2_content/sqlite/pl/world_sql_content_20469fbc386197c9c3b3
… Field Reference
Response The main payload containing the requested data (e.g., manifest, profile, or character info). Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://bungie-net.github.io/multi/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
How This API Fails
We deliberately sent this API a broken request and recorded exactly what came back on 2026-08-10. Knowing the shape of an error before you hit it makes error handling much easier to write.
Returned an HTML error page rather than JSON — worth knowing if your client assumes every response can be parsed as JSON.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Brawl Stars
The Brawl Stars API provides official game data including player profiles, club info, battle logs, and brawler statistics.
Clash of Clans
The Clash of Clans API provides official data on players, clans, clan wars, leagues, and rankings from Supercell's hit mobile strategy game.
Clash Royale
The Clash Royale API offers official data on players, clans, cards, battles, and tournaments from Supercell's card-battle mobile game.
Dota 2
The Dota 2 API (OpenDota) provides detailed match history, hero statistics, player rankings, and game data for the popular MOBA game Dota 2.
Autochess VNG
The Autochess VNG API provides game data for the Autochess VNG mobile game including heroes, items, and races.