These endpoints provide metadata about the Trybe platform
listMetaSupportedLocalesThis endpoint lists the locales which are supported by the platform.
A shopfront visitor may select a locale from this list to change the language of the shopfront,
and one of these locales may be stored against a Customer or Site's preferred_locale.
A list of the platform's supported locales
{
"data": [
{
"code": "en",
"name": "English",
"emoji": "🇬🇧"
},
{
"code": "fr",
"name": "Français",
"emoji": "🇫🇷"
}
]
}listMetaSupportedCurrenciesThis endpoint lists the currencies which are supported by the platform.
A Site may sell offerings to customers in one of the currencies listed here.
A list of the platform's supported currencies
{
"data": [
{
"code": "GBP"
},
{
"code": "EUR"
}
]
}listMetaSupportedTimezonesThis endpoint lists the timezones which are supported by the platform.
A Site may sell offerings to customers in one of the timezones listed here.
A list of the platform's supported timezones
{
"data": [
{
"code": "Europe/Paris"
},
{
"code": "Atlantic/Faroe"
}
]
}getShopAboutReturns metadata about the Shop API service, including the API version, service name, and deployment environment.
This information can be used for version compatibility checks, service health monitoring, and debugging purposes.
When a site_id is provided, the response may include fiscalisation integration details for that specific site.
site_idFilter results by the site they belong to
Information about the Shop API service
{
"data": {
"commit_hash": "05f92eab3c7bc313fca7354282adeba87e1bf833",
"fiscalisation": {
"provider": "fiskaltrust",
"provider_version": "1.2.3"
}
}
}