Southwest Airlines flight fares as JSON
curl --request POST \
--url https://api.scrapeunblocker.com/flights/southwest-quotes \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/flights/southwest-quotes"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/flights/southwest-quotes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Plugins
Southwest Airlines flight fares as JSON
Live Southwest Airlines fares for a route and date, returned as JSON. Each fare product (Basic / Wanna Get Away / Wanna Get Away Plus / Anytime / Business Select) is priced in US dollars or Rapid Rewards points. One-way or return. Origin and destination are IATA airport codes (e.g. DAL, HOU). The search runs on a warm, anti-bot-cleared session.
Southwest Airlines flight fares as JSON
curl --request POST \
--url https://api.scrapeunblocker.com/flights/southwest-quotes \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/flights/southwest-quotes"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/flights/southwest-quotes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
Required range:
1 <= x <= 8Required range:
1 <= x <= 5Response
Southwest fares as JSON.

