RumbleTalk API Resources

Retrieving resource options

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"


Countries

Response format

  • Parameter
  • Type
  • Description
  • id
  • integer
  • The country ID as represented in RumbleTalk
  • name
  • string
  • The country name
  • code
  • string
  • The country code

cURL example

curl \ -X GET \ "https://api.rumbletalk.com/resources/countries"

Response example

{ "data": [ { "id": 227, "name": "United States of America", "code": "EN" }, { "id": 83, "name": "Germany", "code": "DE" }, ... ] }

Languages

Response format

  • Parameter
  • Type
  • Description
  • id
  • integer
  • The language ID as represented in RumbleTalk
  • code
  • string
  • The country code
  • name
  • string
  • The language name as spelled in it's own language

cURL example

curl \ -X GET \ "https://api.rumbletalk.com/resources/languages"

Response example

{ "data": [ { "id": 1, "code": "en", "name": "English" }, { "id": 8, "code": "de", "name": "Deutsch" }, ... ] }

Skins

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

Response format

  • Parameter
  • Type
  • Description
  • id
  • integer
  • The skin's ID

cURL example

curl \ -X GET \ "https://api.rumbletalk.com/resources/skins"

Response example

{ "data": [ {"id": 40000}, {"id": 15000}, ... ] }

Sounds

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

Response format

  • Parameter
  • Type
  • Description
  • id
  • integer
  • The sound's ID
  • name
  • string
  • The name of the sound
  • urlComponent
  • string
  • The URL part of the sound; replace in the example above to play the sound

cURL example

curl \ -X GET \ "https://api.rumbletalk.com/resources/sounds"

Response example

{ "data": [ { "id": 1, "name": "Pop", "urlComponent": "pop" }, { "id": 2, "name": "Hanging Bell", "urlComponent": "hangingBell" }, ... ] }