FORTNITE REST API
  1. Security
FORTNITE REST API
  • Check
    • Get Fortnite game status
      GET
  • News
    • Get Fortnite News
      GET
  • Security
    • Get a Bearer token
      POST
  • PVE
    • Get Fortnite PVE Info (storm, etc)
      GET
    • Get PVE Stat by given username
      GET
  • Stats
    • Get user's stats by user id
      GET
    • Get user's stats by username
      GET
  • Store
    • Get Fortnite Store
      GET
  • User
    • Get a user by username
      GET
  1. Security

Get a Bearer token

POST
/oauth/token
Security
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://skynewz-api-fortnite.herokuapp.com/api/oauth/token' \
--data-urlencode 'email=' \
--data-urlencode 'password='
Response Response Example
200 - Example 1
{
  "access_toekn": "string",
  "expiresIn": "string"
}

Request

Body Params application/x-www-form-urlencoded
email
string 
required
password
string 
required

Responses

🟢200Your access token
application/json
Body
access_toekn
string 
optional
expiresIn
string 
optional
Time in seconds for the validity of token
🟠401Authentication failed
🟠404Authentication failed. User not found
Previous
Get Fortnite News
Next
Get Fortnite PVE Info (storm, etc)
Built with