Destiny The Game API

Games & Comics / API Key Intermediate HTTPS
62 C
Measured Score 0 50 100 Speed 16/30 Consistency 8/20 Security 20/20 Browser access 10/15 Transparency 8/15 TESTED 2026-08-10

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.

Use case: Integrate bungie platform api data into web and mobile applications
Destiny The Game data via REST API

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.

JSON Response · Captured
{
  "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.

Request
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.

HTTP 404 Requesting a path that does not exist text/html

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.

ErrorCode 1: SystemDisabled Bungie maintenance or API downtime.
Check https://www.bungie.net/en/Help/Article/13125 for status updates and retry after maintenance ends.
401 Unauthorized Missing or invalid X-API-Key header.
Ensure you include the header X-API-Key: YOUR_API_KEY in every request and that your key is active.
ErrorCode 99: WebAuthRequired The endpoint requires OAuth authentication.
Implement the OAuth 2.0 flow documented at https://github.com/Bungie-net/api/wiki/OAuth-Documentation to obtain an access token.

Measured Score Breakdown

Live HTTP request to the API endpoint

Speed 16/30
Consistency 8/20
Security 20/20
Browser access 10/15
Transparency 8/15
Endpoint Response Time 229ms

Fully tested on Aug 10, 2026

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS UNKNOWN
Category Games & Comics
Difficulty Intermediate
Endpoint last called: 2026-08-10

Related Tags

Similar APIs

View All →