Airport Gap · Example Payload

Post Tokens

AirportsAviationTransportationIATAICAODistance CalculationGeolocation

Post Tokens is an example object payload from Airport Gap, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summaryrequestresponse

Example Payload

Raw ↑
{
  "summary": "POST /tokens — generate a Bearer token for API authentication",
  "request": {
    "method": "POST",
    "url": "https://airportgap.com/api/tokens",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "email": "user@example.com",
      "password": "s3cr3tpassword"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "token": "abc123xyz"
    }
  }
}