In this page you'll be able to find all of RumbleTalk's availble resources.
Feel free to store these on your DB once you fetch them for ease of use.
And remember to update them every once in a while.
*All of the resources are sent back as a JSON object and the results are stored under the variable named "data"
curl \
-X GET \
"https://api.rumbletalk.com/resources/countries"
{
"data": [
{
"id": 227,
"name": "United States of America",
"code": "EN"
},
{
"id": 83,
"name": "Germany",
"code": "DE"
},
...
]
}
curl \
-X GET \
"https://api.rumbletalk.com/resources/languages"
{
"data": [
{
"id": 1,
"code": "en",
"name": "English"
},
{
"id": 8,
"code": "de",
"name": "Deutsch"
},
...
]
}
You can preview a chat skin by going to the following link:
https://d1pfint8izqszg.cloudfront.net/admin/images/skins/new/big/{skinId}_big.jpg
For example:
https://d1pfint8izqszg.cloudfront.net/admin/images/skins/new/big/40000_big.jpg
curl \
-X GET \
"https://api.rumbletalk.com/resources/skins"
{
"data": [
{"id": 40000},
{"id": 15000},
...
]
}
You can preview a sound by going to the following link:
https://d1pfint8izqszg.cloudfront.net/sounds/{urlComponent}.mp3
For example:
https://d1pfint8izqszg.cloudfront.net/sounds/pop.mp3
curl \
-X GET \
"https://api.rumbletalk.com/resources/sounds"
{
"data": [
{
"id": 1,
"name": "Pop",
"urlComponent": "pop"
},
{
"id": 2,
"name": "Hanging Bell",
"urlComponent": "hangingBell"
},
...
]
}