13 lines
347 B
Python
13 lines
347 B
Python
import requests
|
|
import json
|
|
|
|
url = "https://go.theflybook.com/Public/v1/Reservations?start=2024-04-29T07:00:00.000Z&end=2025-04-30T17:00:00.000Z"
|
|
|
|
payload = ""
|
|
headers = {
|
|
'X-FB-API-KEY': 'KBQmP5oqdqWkn2w6hQSMd4EGow1kc6peqTIYPMvbE=',
|
|
'Content-Type': 'application/json'
|
|
}
|
|
|
|
response = requests.request("GET", url, headers=headers, data=payload)
|