Abbreviation Company Name
These abbreviations are used by the type field in results and by the type
and site parameters across the API.
| Abbreviation | Company Name |
|---|---|
M | Magnum |
PMP | Da Ma Cai |
ST | SportsToto |
SG | Singapore |
CS | Special CashSweep |
STC | Sandakan |
EE | Sabah88 |
H | Lucky Hari Hari |
GD | Grand Dragon |
P | Perdana |
Where each form is used
| Form | Example | Used by |
|---|---|---|
| Abbreviation | CS | type in results, Number Analysis, Number History, Hot Number; site in Draw List; keys in Company Logo |
| Full name, underscored | Special_CashSweep | type in Check Image and Base64 to Image |
caution
The image endpoints are the only two that take the full company name instead of the abbreviation. Everything else uses the abbreviation.
Other type values seen in results
These appear in the result payload's type field but are not in the
abbreviation table above:
| Value | Notes |
|---|---|
HT19:30, HT15:30 | The only types that populate fdData.jackpotAmount. |
GD6D | The only type that populates fdData.d1. |
SGJP6/45 | The only type that populates fdData.others. |
Copy-paste constant
export const COMPANIES = {
M: 'Magnum',
PMP: 'Da Ma Cai',
ST: 'SportsToto',
SG: 'Singapore',
CS: 'Special CashSweep',
STC: 'Sandakan',
EE: 'Sabah88',
H: 'Lucky Hari Hari',
GD: 'Grand Dragon',
P: 'Perdana',
};
export const COMPANY_CODES = Object.keys(COMPANIES);