- Auth
- Customer
- Passengers
- invoice Info
- Favorite Flights
- Notifications
- Fast Actions
- Customer - Get ProfileGET
- Customer - Update ProfilePOST
- Customer - Update PasswordPOST
- Search History - FlightGET
- Customer - Remove AccountDELETE
- Utils
- Flight
- Bus
- Hotel
- Socket
- Auto Completes
- Queue / Socket
- Misc
- Payment
- Orders
- Blog
- Contents
- Refund
- Notifications
- Otp VerifyPOST
Check Pnr
Developing
Testing Env
Testing Env
POST
https://test-api.ucuzyolu.com/pnrcheck
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
client-id
string
optional
Default:
302382-1928283273-237723829-292999
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test-api.ucuzyolu.com/pnrcheck' \
--header 'client-id: 302382-1928283273-237723829-292999'
Responses
🟢200OK
application/json
Body
data
object (Cart)
required
id
integer
required
token
string
required
total
number
required
status
string
required
payment
object
required
items
object
required
currencyCode
string
required
statusName
string
required
invoice
object | null
optional
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"id": 1,
"token": "i9k6NnZgRlrJgqdY2F42Pc2iQ0CFtfc8mh8D",
"total": 2395.57,
"status": "pending",
"payment": {
"token": "abOy12QzcnuTy4NYE5PHFuaXLhbHw8IunwG5zXb1F6UmwYq4SP3mnUewDcyqIUw7ytRzVXaUqxjUII27iKyYMzEe1GN9jBNvMGS9MCr6eNOsyexAEgYCLuvNZnRjKaqj",
"amount": 2395.57,
"state": "new",
"comission": 0,
"total": 2395.57,
"details": {
"is3d": false
},
"paymentType": "Cari Hesap",
"is3d": false,
"authMode": "preauth"
},
"invoice": {
"address": "Beykoz",
"district": "Beykoz",
"zipcode": "34820",
"city": "İstanbul",
"country": "Turkey",
"isCorporate": true,
"invoiceName": "Sekiz Kreatif",
"taxOffice": "Avcılar",
"taxNumber": "7590477978",
"invoiceNumber": null
},
"items": {
"flights": [
{
"id": 1,
"pnr": "WEB8CP",
"refundable": false,
"domestic": false,
"duration": "01:35",
"yr": 149,
"vq": 113.96,
"date": "2024-09-26",
"origin": "IST",
"destination": "VAS",
"segments": [
{
"origin": "IST",
"destination": "VAS",
"date": "2024-09-26",
"airline": "TK",
"cabin": "B",
"price": 2123.61,
"tax": 262.96,
"total": 2392.57,
"margin": 3,
"returnDate": null,
"flightNumber": "TK2658",
"cabinClass": "economy",
"currencyCode": "TRY",
"grandTotal": 2395.57,
"originName": "Atatürk Havalimanı",
"destinationName": "Nuri Demirağ Havalimanı",
"airlineName": "Turkish Airlines",
"arrivalTime": "15:00",
"departureTime": "13:45"
}
],
"passengers": [
{
"id": 1,
"status": 0,
"pnr": "WEB8CP",
"gender": "M",
"birthdate": "1989-04-20",
"email": "JOHNDUE@EXAMPLE.COM",
"identity": "49852133948",
"nationality": "TR",
"phone": "+905322808035",
"total": 2389.57,
"sequenceNo": 1,
"ticketNumber": null,
"firstName": "MEHMET",
"lastName": "GULBILGE",
"isLocalCitizen": true,
"passportCountry": null,
"passportNo": null,
"passportValidDate": null,
"paxCode": "ADT",
"priceHandLuggage": 0,
"priceBaggage": 0
}
],
"sequenceNo": 0,
"flightId": "0e26df6e-9183-46ea-8863-f247f6a8a7f0",
"passengerCount": 1,
"flightType": "oneway",
"grandTotal": 2395.57,
"airDuration": "01:35",
"originCity": "Istanbul",
"originName": "Atatürk Havalimanı",
"returnDate": null,
"arrivalTime": "15:00",
"departureTime": "13:45",
"destinationCity": "Sivas",
"destinationName": "Nuri Demirağ Havalimanı"
}
]
},
"currencyCode": "TRY",
"statusName": "Onay Bekleniyor"
},
"success": true,
"code": 0,
"message": ""
}
Modified at 2024-11-21 14:40:27