API Reference
Developer documentation
Retrieve all available markets for the company
cURL
curl --request GET \ --url https://api.cevoid.com/v1/markets \ --header 'x-api-key: <api-key>'
{ "count": 123, "next": "<string>", "nodes": [ { "id": "market_us_123abc", "shortId": "us", "title": "United States", "country": "US", "currency": "USD", "language": "en", "domain": "https://store.example.com", "default": true, "createdAt": "2024-01-10T08:00:00.000Z", "updatedAt": "2024-01-15T12:45:30.000Z", "customId": "us-market", "settings": {} } ] }
Max value for limit is 25
1 <= x <= 25
10
Number of items to skip
x >= 0
0
Successful response
Total number of items
URL for next page
Show child attributes
Unique identifier for the market within the Cevoid system
"market_us_123abc"
Shortened, human-readable identifier for the market, typically used in URLs and API calls
"us"
Display name of the market, typically representing the country or region
"United States"
ISO 3166-1 alpha-2 country code representing the geographic market location
"US"
ISO 4217 currency code used for pricing and transactions within this market
"USD"
ISO 639-1 language code representing the primary language for content and communications in this market
"en"
Primary domain URL or website associated with this market, used for e-commerce store integration
"https://store.example.com"
Indicates whether this market serves as the default/fallback market when no specific market is selected
true
ISO 8601 timestamp indicating when this market was first created in the system
"2024-01-10T08:00:00.000Z"
ISO 8601 timestamp indicating when this market was last updated
"2024-01-15T12:45:30.000Z"
Custom identifier for the market, alternative to shortId
"us-market"
Market-specific configuration and settings object
{}