Skip to main content

Developer Reference

SEKO Logistics Facility Lookup

Find any of SEKO Logistics’ 181 offices and warehouses across 66 countries - search by country, city, or keyword, with GPS coordinates and hub identification. Free to use, plus a REST API for coverage and batch queries from your own app.

GET /api/seko-location?country=:country

SEKO Offices by Country

Look up SEKO Logistics offices by country name. Returns office details including address, phone, GPS coordinates, and hub status.

Query Parameters

Parameter Type Description
country required string Country name (e.g., United States, China, Germany)

Response Fields

Field Type Description
success boolean Indicates whether the request succeeded
country string The queried country
total integer Number of offices returned
locations[].id integer Internal location ID
locations[].officeId integer Unique office ID
locations[].name string Office name
locations[].address object Address with street, city, state, zip, country
locations[].phone string Phone number
locations[].coordinates object GPS latitude and longitude
locations[].isHub boolean Whether this is a hub location

Code Examples

curl "https://freightapis.dev/api/seko-location?country=Australia" \
  -H "Authorization: Bearer YOUR_API_KEY"

Full-text search across office names, cities, countries, and addresses. Results are paginated.

Query Parameters

Parameter Type Description
q required string Search query (min 2 characters)
page optional integer Page number (default: 1)

Response Fields

Field Type Description
success boolean Indicates whether the request succeeded
query string The search query echoed back
locations[].id integer Internal location ID
locations[].officeId integer Unique office ID
locations[].name string Office name
locations[].address object { street, city, state, zip, country } (state/zip may be null)
locations[].phone string Phone number
locations[].coordinates object { latitude, longitude }
locations[].isHub boolean Whether this office is a regional hub
total integer Total number of matching results
currentPage integer Current page number
totalPages integer Total number of pages

Code Examples

curl "https://freightapis.dev/api/seko-location/search?q=logistics" \
  -H "Authorization: Bearer YOUR_API_KEY"
GET /api/seko-location/hubs

SEKO Hub Locations

Returns all SEKO hub locations worldwide. Hubs are major logistics centers.

Response Fields

Field Type Description
success boolean Indicates whether the request succeeded
total integer Number of hubs returned
hubs[].id integer Internal location ID
hubs[].officeId integer Unique office ID
hubs[].name string Office name
hubs[].address object { street, city, state, zip, country } (state/zip may be null)
hubs[].phone string Phone number
hubs[].coordinates object { latitude, longitude }
hubs[].isHub boolean Whether this office is a regional hub

Code Examples

curl "https://freightapis.dev/api/seko-location/hubs" \
  -H "Authorization: Bearer YOUR_API_KEY"
GET /api/seko-location/coverage

SEKO Coverage Statistics

Returns aggregate statistics: total offices, total hubs, and breakdown by country.

Response Fields

Field Type Description
success boolean Indicates whether the request succeeded
totalLocations integer Total number of SEKO offices
totalHubs integer Total number of hubs
byCountry array [ { country, count } ]

Code Examples

curl "https://freightapis.dev/api/seko-location/coverage" \
  -H "Authorization: Bearer YOUR_API_KEY"
POST /api/seko-location/batch

Batch Country Lookup

Retrieve offices for multiple countries in a single request. Maximum 20 countries per request (50 for Enterprise).

Request Body

Parameter Type Description
countries required string[] Array of country names. Max 20 for Pro, 50 for Enterprise.

Response Fields

Field Type Description
success boolean Indicates whether the request succeeded
results object Map of key to a per-key result: { total, locations[] } keyed by country name
summary object Aggregate counts for the request

Code Examples

curl -X POST "https://freightapis.dev/api/seko-location/batch" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"countries": ["United States", "China", "Australia"]}'

SEKO Logistics Locations - FAQ

How do I find a SEKO Logistics facility?

Search by country, city, or keyword. FreightAPIs covers SEKO offices and warehouses across 66 countries and returns GPS coordinates, hub identification, and coverage instantly - free to use, with a REST API for programmatic and batch queries.

Is the SEKO Logistics lookup free?

Yes. Facility lookup is free for all plans. The Free tier includes 20 API calls per month; paid plans raise the monthly quota for higher-volume queries.

How many SEKO facilities are covered?

FreightAPIs covers 181 SEKO Logistics office and warehouse locations across 66 countries, with batch lookups of up to 20 items per request (50 for Enterprise).