How to get AirLine Code from FlightInfoEx response ?

Hello all!
I`m new at flightaware.

Can you please advise me how to get the airlineCode in ICAO type desirable, having as input data the FlightInfoEx response?

Example FlightInfoEx response i have:

“faFlightID”: “AAL30-1480227909-airline-0002”,
“ident”: “AAL30”,
“aircrafttype”: “A321”,
“filed_ete”: “04:54:00”,
“filed_time”: 1480227909,
“filed_departuretime”: 1480492500,
“filed_airspeed_kts”: 435,
“filed_airspeed_mach”: “”,
“filed_altitude”: 290,
“route”: “HOLTZ1 TRM PKE DRK J96 GCK J96 SLN J24 MCI J80 SPI VHP ROD DJB JHW J70 LVZ LENDY6”,
“actualdeparturetime”: 1480493520,
“estimatedarrivaltime”: 1480509600,
“actualarrivaltime”: 1480509630,
“diverted”: “”,
“origin”: “KLAX”,
“destination”: “KJFK”,
“originName”: “Los Angeles Intl”,
“originCity”: “Los Angeles, CA”,
“destinationName”: “John F Kennedy Intl”,
“destinationCity”: “New York, NY”

Is any way ?

Thank you any way for any advice.

From the “ident” field of the response, you can parse the first 3 characters (“AAL”) as the airline identifier, and the remaining numeric parts as the flight number (“30”).

You can use the AirlineInfo function to look up details about the airline “AAL”, if needed.

Thank you very much!