score:14
Following the same procedure as the longitude question and the same elimination of nonsense and duplicates:
SELECT ST_Y(source_geom) as src_y, ST_Y(destination_geom) as dst_y, abs(ST_Y(source_geom)-ST_Y(destination_geom)) as delta, name, destination_airport, source_airport from flights order by delta limit 25;
'35.4213981628418','35.4213981628','4.17941237174091e-11','Olympic Airlines','KSJ','AOK' '43.3021011352539','43.3011016845703','0.00099945068359375','Iberia Airlines','BIO','LCG' '59.3502998352','59.3516998291','0.00139999390000867','Linhas A','PPW','WRY' '32.89860153','32.896800994873','0.00180053512695366','American Airlines','DFW','CHS' '-0.894','-0.891833007335663','0.00216699266433718','Garuda Indonesia','MKW','SOQ'
Our first result, between Kasos Island Public Airport and Karpathos Island National Airport, two Greek islands, is shockingly, incredibly straight, but the airports are only 22km apart, failing the distance test.
Excluding that gives us a new candidate: flights between Bilbao Airport and A CoruΓ±a Airport in northern Spain, a distance of 444km and a difference in latitude of just .001. However, nobody seems to be operating that route at present. FlightAware and FlightRadar24 list no such flights, and the OneWorld route map shows only an Iberia flight from A CoruΓ±a to Madrid.
Next is PPW-WRY in Scotland, home to the shortest scheduled passenger flight in the world. Certainly fun, but less than 3km.
Which brings us to our actual winner: Dallas/Fort Worth-Charleston, United States. This provides an impressive distance of 1,589km between the two US cities with a latitude difference of 0.0018. The route is served by twice-daily nonstops on American Airlines, AAL2762/AAL2763/AAL2764 (for whatever reason, 2764 is used for both directions).
Update: Going by azimuth, PostGIS tells me the winner is TAS-UGC, a bearing of 90.007, assuming WGS84 geography.