Skip to main content
POST
https://s-apis.oppigames.com/
/
game
/
conversion-rates
Conversion
curl --request POST \
  --url https://s-apis.oppigames.com/game/conversion-rates \
  --header 'Content-Type: <content-type>' \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-signature: <x-signature>' \
  --header 'x-timestamp: <x-timestamp>' \
  --data '
{
  "currency": "<string>",
  "amount": 123
}
'
{
  "status": "RS_OK",
    "data": [
      {
        "currencyCode": "INR",
        "amount": 170
      },
      {
        "currencyCode": "EUR",
        "amount": 500
      }
    ]
}

Headers

x-api-key
string
required
A unique identifier associated with operator calling API.
x-signature
string
required
A SHA256 HMAC signature generated using the request body and timestamp. Format: HMAC_SHA256(JSON.stringify(data) + ’|’ + timestamp), signed using the provided secret key.
x-timestamp
string
required
An Unix timestamp (milliseconds) Used to verify the request’s freshness. Ensure the same value is used in signature generation.
The signature will remain valid for only 5 minutes from the provided timestamp.
Content-Type
string
required
Must be set to application/json.

Request Body

currency
string
The currency code for which the conversion is requested (e.g., “INR”, “USD”).
See the list of supported currencies here.
amount
number
The amount to be converted.

Response

status
string
required
Code indicates status of the request whether it is succeeded or failed. We have listed error codes here.
{
  "status": "RS_OK",
    "data": [
      {
        "currencyCode": "INR",
        "amount": 170
      },
      {
        "currencyCode": "EUR",
        "amount": 500
      }
    ]
}