Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location 'https://demo.tourwell.net/api/v1/airports' \
--header 'Authorization: Bearer <token>'
Responses
application/json
{
"success": true,
"message": "Successfully",
"data": [
{
"id": 1,
"code": "HAN",
"name": "Sân bay Nội Bài",
"location": "Hà Nội"
},
{
"id": 2,
"code": "SGN",
"name": "Sân bay Tân Sơn Nhất",
"location": "Hồ Chí Minh"
}
]
}
Modified at 2025-09-19 18:00:10