uld_lookup
Look up air freight ULD specifications including dimensions, weights, usable volume, compatible aircraft, and deck position by IATA code, category, or deck filter.
Instructions
Look up air freight ULD (Unit Load Device) specifications.
15 types including AKE (LD3), PMC main deck pallet, temperature-controlled containers, and more. Returns dimensions, weights, usable volume, compatible aircraft, and deck position.
Use this tool when you need to:
Find ULD specs by IATA code (e.g., "AKE", "PMC")
Compare container vs pallet ULD types
Check which ULDs fit on lower deck vs main deck
Find aircraft-compatible ULDs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | ULD code (e.g., "AKE", "PMC"). Omit to list all. | |
| category | No | Filter by category | |
| deck | No | Filter by deck position |
Implementation Reference
- src/tools.ts:610-612 (handler)The handler function for uld_lookup. It calls apiGet with endpoint 'uld' and passes optional query parameters: type, category, deck.
handler: async (args) => apiGet('uld', { type: args.type, category: args.category, deck: args.deck }), };