Meta Data
Public endpoints that return reference data for dropdowns and registration forms.
GET /meta/business-types
List available business types.
Auth: None
Response:
{
"success": true,
"data": ["retail", "wholesale", "restaurant", "pharmacy", "supermarket", "hardware", "boutique", "other"]
}GET /meta/regions
List Tanzania regions.
Auth: None
Response:
{
"success": true,
"data": ["Arusha", "Dar es Salaam", "Dodoma", "Iringa", "Kilimanjaro", "Mwanza", ...]
}GET /meta/regions/:slug/districts
List districts for a region.
Auth: None
Example: GET /meta/regions/dar-es-salaam/districts
Response:
{
"success": true,
"data": ["Kinondoni", "Ilala", "Temeke", "Kigamboni"]
}GET /meta/occupations
List occupation options.
Auth: None
Response:
{
"success": true,
"data": ["retailer", "wholesaler", "manufacturer", "farmer", "service_provider", "other"]
}