# Bungie.Net API **Provider:** Bungie.Net **Category:** entertainment **Base URL:** `https://www.bungie.net/Platform` **Auth:** api-key — `X-API-Key: YOUR_BUNGIE_API_KEY` **Rate Limit:** 250 requests/10 seconds; 25,000/day **Free Tier:** Yes — [object Object] **Pricing:** Free (free) **Docs:** https://github.com/Bungie-net/api ## Description These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality. ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://www.bungie.net/Platform/App/ApiUsage/{applicationId}/` | Get API usage by application for time frame specified. You can go as far back as | | GET | `https://www.bungie.net/Platform/App/FirstParty/` | Get list of applications created by Bungie. | | GET | `https://www.bungie.net/Platform/CommunityContent/Get/{sort}/{mediaFilter}/{page}/` | Returns community content. | | GET | `https://www.bungie.net/Platform/Content/GetContentById/{id}/{locale}/` | Returns a content item referenced by id | | GET | `https://www.bungie.net/Platform/Content/GetContentByTagAndType/{tag}/{type}/{locale}/` | Returns the newest item that matches a given tag and Content Type. | | GET | `https://www.bungie.net/Platform/Content/GetContentType/{type}/` | Gets an object describing a particular variant of content. | | GET | `https://www.bungie.net/Platform/Content/Rss/NewsArticles/{pageToken}/` | Returns a JSON string response that is the RSS feed for news articles. | | GET | `https://www.bungie.net/Platform/Content/Search/{locale}/` | Gets content based on querystring information passed in. Provides basic search a | ## Authentication API key in the X-API-Key request header ``` X-API-Key: YOUR_BUNGIE_API_KEY ``` ## Sample Request ```bash curl -X GET 'https://www.bungie.net/Platform/App/ApiUsage/{applicationId}/' \ -H 'X-API-Key: YOUR_API_KEY' ``` ## Sample Response ```json {} ``` ## Pricing Details Completely free. Default: 25,000 requests/day per API key. Throttle limit: 250 requests/10-sec window. --- *Source: [API Map](https://apimap.dev/apis/bungie-net/) — CC BY 4.0*