Flight Offers Price
amadeus · Company
Before using this API, we recommend you read our **[Authorization Guide](https://developers.amadeus.com/self-service/apis-docs/guides/authorization-262)** for more information on how to generate an access token. Please also be aware that our test environment is based on a subset of the production, if you are not returning any results try with big cities/airports like LON (London) or NYC (New-York).
Authentication
Sample Requests
Confirm pricing of given flightOffers.
Hover any highlighted part to learn what it does
| X-HTTP-Method-Override | GET |
curl -X POST "https://api.apis.guru/v2/specs/amadeus.com/amadeus-flight-offers-price/1.2.2/shopping/flight-offers/pricing?include=example&forceClass=false" \ -H "X-HTTP-Method-Override: GET"
import requests
params = {
"include": "example",
"forceClass": "false"
}
headers = {
"X-HTTP-Method-Override": "GET"
}
response = requests.post(
"https://api.apis.guru/v2/specs/amadeus.com/amadeus-flight-offers-price/1.2.2/shopping/flight-offers/pricing",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amadeus.com/amadeus-flight-offers-price/1.2.2/shopping/flight-offers/pricing');
url.searchParams.set('include', 'example');
url.searchParams.set('forceClass', 'false');
const response = await fetch(url, {
method: 'POST',
headers: {
'X-HTTP-Method-Override': 'GET'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amadeus.com/amadeus-flight-offers-price/1.2.2/shopping/flight-offers/pricing")
q := baseURL.Query()
q.Set("include", "example")
q.Set("forceClass", "false")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("POST", targetURL, nil)
req.Header.Set("X-HTTP-Method-Override", "GET")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/amadeus.com/amadeus-flight-offers-price/1.2.2/shopping/flight-offers/pricing")
uri.query = URI.encode_www_form({
"include" => "example",
"forceClass" => "false"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["X-HTTP-Method-Override"] = "GET"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amadeus.com/amadeus-flight-offers-price/1.2.2/shopping/flight-offers/pricing?" . http_build_query([
"include" => "example",
"forceClass" => "false"
]);
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"X-HTTP-Method-Override: GET"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Flight Offers Price?
Flight Offers Price is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Flight Offers Price is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?