Guides
Transport
Query historical transport and connectivity indicators, plus airport and port observations for South Africa and port observations for Kenya.
Transport And Connectivity In Africa API
Transport and connectivity data is exposed through the shared indicator, data, and signals endpoints.
Sources include World Bank WDI, South Africa's ACSA airport statistics and TNPA port statistics, and Kenya Ports Authority port statistics.
GET /v1/indicators?category=infrastructureGET /v1/data?category=infrastructureGET /v1/sources/world_bank_wdiGET /v1/sources/acsa_za_airport_signalsGET /v1/sources/acsa_za_on_time_performance_signalsGET /v1/sources/kpa_ke_port_signalsGET /v1/countries/{country_code}/signalsGET /v1/sources/tnpa_za_port_signals
Historical Transport Metrics
air_transport_passengersair_transport_departuresliner_shipping_connectivity_indexrail_lines_kmroad_network_total_kmpaved_roads_pctmobile_subscriptions_per_100fixed_broadband_subscriptions_per_100secure_internet_servers_per_million
These are annual country-level observations. Check the indicator catalog for available countries and years.
Current Airport And Port Operations
South Africa's ACSA airport traffic, ACSA network on-time performance, and TNPA port observations are available through /v1/countries/za/signals.
Kenya's KPA port observations are available through /v1/countries/ke/signals.
-
airport_passengers_ytd_total -
airport_aircraft_movements_ytd_total -
airport_on_time_performance_ytd_pct -
airport_on_time_performance_latest_month_pct -
port_throughput_latest_tonnes -
port_container_throughput_latest_teu -
port_transit_cargo_latest_tonnes -
port_vessel_calls_latest_total
The sources cover different locations and reporting periods:
| Source | Geographic scope | Reporting period |
|---|---|---|
| ACSA airport traffic | ACSA airport network | Year-to-date totals through the latest published month |
| ACSA on-time performance | ACSA airport network | Latest published monthly and year-to-date percentages |
| TNPA port operations | South Africa's national port system | Published monthly totals |
| KPA port operations | Port of Mombasa | Annual performance totals from the Kenya Ports Authority cargo-growth article |
Read each observation's as_of_period for the period represented. These publications may describe different months or years.
Example Queries
curl "https://api.africa-api.com/v1/indicators?category=infrastructure&has_data=true" \
-H "Authorization: Bearer $AFRICA_API_KEY"curl "https://api.africa-api.com/v1/data?country_codes=eg,ke,za&metric_key=air_transport_passengers&year=2023" \
-H "Authorization: Bearer $AFRICA_API_KEY"curl "https://api.africa-api.com/v1/data?country_code=ng&metric_key=mobile_subscriptions_per_100&start_year=2018&end_year=2024" \
-H "Authorization: Bearer $AFRICA_API_KEY"curl "https://api.africa-api.com/v1/countries/za/signals" \
-H "Authorization: Bearer $AFRICA_API_KEY"