Developer Reference

SEKO Logistics

181 office locations across 66 countries with GPS coordinates. Search by country, city, or keyword. Includes hub identification.

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[].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 nmfc_live_xxxxxxxxxxxxxxxxxxxx"

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)

Code Examples

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

SEKO Hub Locations

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

Code Examples

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

SEKO Coverage Statistics

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

Code Examples

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

Batch Country Lookup

Retrieve offices for multiple countries in a single request. Maximum 10 countries per call.

Request Body

Parameter Type Description
countries required string[] Array of country names (max 10)

Code Examples

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