2

I have been searching for a while now on how to access user data from XBOX live.

Unfortunately, all I found was this which only allows 2 API calls per minute.

Is there an offcial XBOX API that I can access for user information ?

Elvis Xia - MSFT
  • 10,801
  • 1
  • 13
  • 24
HittmanA
  • 169
  • 5
  • 17
  • 1
    Maybe [this](http://stackoverflow.com/questions/38603905/how-to-interact-with-xbox-api-using-php-and-curl) SO question could help you to clarify your question. – Jeroen Heier Nov 22 '16 at 05:24

3 Answers3

6

As for the official API, at GDC we just announced the Xbox Live Creators Program, which will soon be open to all developers via the Xbox Live Creators Program – no concept approval required! You will be able to rapidly publish your game to Xbox One or Windows 10 through a short and simplified certification process.

To get started, go here: https://developer.microsoft.com/en-us/games/xbox/xboxlive/creator and follow the 4 steps and it'll guide you through the process.

There's more information here about all our GDC announcements at https://majornelson.com/2017/03/01/new-investments-for-xbox-developers-and-gamers-kick-off-gdc-2017/

5

Hey as the owner and Developer of XboxAPI, I can tell you that the old v1 is discontinued. With regards to the latest version of the API (v2) this doesn't limit you to 2 requests per minute, its requests per hour depending on your subscription. Here are the hourly limits and costs per subscription.

  • Free (£0 per year - 120 API requests per hour)
  • Silver (£2 per month - 400 API requests per hour)
  • Gold (£5 per month - 1,000 API requests per hour)
  • Platinum (£10 per month - 3,000 API requests per hour)
  • Titanium (£40 per month - 20,000 API requests per hour)
  • Uber (£100 per month - 50,000 API requests per hour)

XboxAPI runs off of an official API that powers the desktop and mobile applications. The reason that I created this API is because its not very user accessible.

If you wish to get the official API yourself, then you need to be a member of ID@Xbox and this is for Indi Game Developers only who are already established, and wish to launch on the Xbox console.

djekl
  • 157
  • 1
  • 2
  • 1
    Every time I try to use your API it just says "A new login is required to get fresh access tokens" even though I'm logged into your webpage and can see my auth id. I don't see documentation anywhere on your site as to what this means. – Gargoyle Dec 24 '16 at 01:26
  • In that xboxapi, you are asking to send x-auth and xuid for some endpoints. If I want other users data, I need their xbox profile user id. How to get these or How to implement sign in with xbox outh as in your website to get the xbox profile user id? – Goutham Jun 11 '18 at 06:19
  • @Gargoyle I ran into this as well. If you click the `Remember Me` checkbox in the window after clicking `Sign in to Xbox LIVE` you get some more info about how it works. It seems like if you want it to automatically refresh your api token (not the XboxApi API Key) you'll need it to save your password. – Jordan Jun 17 '19 at 18:36
0

API Rate Limits Xbox does not provide an official API for anyone to use. Their are a few sites that provide an API one of which is https://xboxapi.com/v1 xboxapi makes it very easy to pull your Xbox API data.

i found some hint this will enable the page to load faster and avoid going over xboxapi's API Limit which is set to 350 requests an hour.

https://daveismyname.com/blog/display-xbox-live-data-with-xboxapi-and-cache-it

checck this out

channasmcs
  • 1,104
  • 12
  • 27