Platform Authentication

The following describes the token security used to access Ursa Space’s platform APIs.

Request Format

URL: https://platform.ursaspace.com/api/pas/login

Request Type: POST

Headers:

  • Content-type: application/x-www-form-urlencoded

Form Parameters:

  • grant_type: “password”

  • username: <your username>

  • password: <your password>

Response Format

{
“access_token”: “<TOKEN>”,
“token_type”: “Bearer”,
“expires_in”: 288005
}