Jèko
Service Providers

List business activities (Service Provider API)

GET
/partner_api/service_providers/activities

Returns the list of business activity categories and their activities. This endpoint is equivalent to /static/activities but filters out disabled categories and activities.

Use this endpoint to:

  • Get valid activity categories and activities for business registration
  • Display activity options in your application
  • Validate activity information before creating businesses

Activity Information:

  • Only enabled categories and activities are returned
  • Activities are grouped by category
  • Supports language selection via Accept-Language header (defaults to French)
  • Categories and activities are sorted alphabetically

Language Support:

  • Send Accept-Language: en for English
  • Send Accept-Language: fr for French (default)

Authentication: Requires API key headers. The authenticated business must be a service provider.

Authorization

ApiKey ApiKeyId
X-API-KEY<token>

In: header

X-API-KEY-ID<token>

In: header

Header Parameters

accept-language?string

Language code for activity names (fr or en). Defaults to fr if not provided.

Default"fr"

Value in

  • "fr"
  • "en"

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/partner_api/service_providers/activities"
[  {    "id": "string",    "name": "string",    "activities": [      {        "id": "string",        "name": "string"      }    ]  }]