# Get fuel prices for an airport Retrieve all fuel prices for a specific airport that were submitted by the partner associated with the authentication token. Only fuel prices associated with the operator linked to the authentication token will be returned. Endpoint: GET /api/v2/partners/airports/{airportCode}/fuel-prices Version: 2.0.0 Security: X-Api-Client-Id, X-Auth-Token ## Path parameters: - `airportCode` (string, required) The airport code for which fuel prices are being retrieved. This can be an IATA, ICAO, FAA code, or airport ID. Valid examples during demo include: AGAT, AGGR, EBCR, EGSK, EHPC, EPJA, DAOS Example: "AGAT" ## Response 200 fields (application/json): - `id` (string) Unique identifier for the fuel price record Example: "12345" - `fboName` (string) Name of the Fixed Base Operator (FBO) Example: "Jet FBO" - `contractorName` (string) Name of the fuel contractor Example: "Shell Aviation" - `currency` (string) Currency code for the fuel prices Example: "EUR" - `volumeFrom` (number) Minimum volume for this price tier Example: 1000 - `volumeTo` (number) Maximum volume for this price tier Example: 5000 - `unit` (string) The unit of volume for the fuel prices. This indicates whether the prices are specified per liter or per US gallon. The options are: - : Prices are specified per liter. - : Prices are specified per US gallon. Enum: "LITER", "GALLON_USA" - `pricingPrivate` (object) - `pricingPrivate.price` (number) The price of the fuel per unit. Specified in the currency defined in the field. Example: 1.85 - `pricingPrivate.priceIndex` (number) Price in the given location divided by the Price Private in the base location multiplied by 100 Example: 105.5 - `pricingCommercial` (object) - `preArrivalRemarks` (string) Remarks for pre-arrival fuel services Example: "24-hour notice required" - `paymentMethod` (string) Accepted payment methods Example: "Credit Card, Invoice" - `phone` (string) Contact phone number Example: "+1-555-123-4567" - `email` (string) Contact email address Example: "fuel@jetfbo.com" - `remarks` (string) Additional remarks or notes Example: "Preferred fuel provider" - `airport` (object) - `airport.id` (string) Airport identifier Example: "123" - `airport.name` (string) Airport name Example: "Vienna International Airport" - `airport.icao` (string) ICAO code Example: "LOWW" - `airport.iata` (string) IATA code Example: "VIE" - `source` (string) Source of the fuel price data Example: "Partner API" - `vendorId` (string) Vendor identifier Example: "vendor123" - `vendorName` (string) Vendor name Example: "Fuel Provider Inc" - `expirationDateTime` (string) Expiration date and time for the fuel price Example: "2024-12-31T23:59:59.000Z" - `createdAtDateTime` (string) Creation date and time Example: "2024-12-31T23:59:59.000Z" - `updatedAtDateTime` (string) Last update date and time Example: "2024-12-31T23:59:59.000Z"