Skip to main content
POST
/
api
/
v2
/
backoffice
/
monetizations
cURL
curl --request POST \
  --url https://sandbox.killb.app/api/v2/backoffice/monetizations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'idempotency-key: <idempotency-key>' \
  --data '
{
  "fromCurrency": "USD",
  "toCurrency": "COP",
  "fromAmount": 100000,
  "toAmount": 420000000,
  "fxRate": 4200,
  "tradeDate": "2025-09-29T15:00:00Z",
  "status": "PENDING",
  "outProviderCode": "CITI",
  "inProviderCode": "BANCOLOMBIA",
  "metadata": {
    "note": "Liquidity for payroll"
  }
}
'
{
  "id": "4d23aa52-1b40-4584-a8ea-58aba6099c5c",
  "fromCurrency": "USD",
  "toCurrency": "COP",
  "fromAmount": 100000,
  "toAmount": 420000000,
  "fxRate": 4200,
  "tradeDate": "2025-09-29T15:00:00.000Z",
  "status": "PENDING",
  "outProviderCode": "CITI",
  "inProviderCode": "BANCOLOMBIA",
  "createdAt": "2025-09-29T15:00:00.000Z",
  "updatedAt": "2025-09-29T15:00:00.000Z",
  "metadata": {
    "note": "Liquidity for payroll"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

idempotency-key
string
required

Body

application/json
fromCurrency
string
required

Source currency (ISO 4217 or crypto ticker)

Example:

"USD"

toCurrency
string
required

Target currency (ISO 4217 or crypto ticker)

Example:

"COP"

fromAmount
number
required

Amount to be sent in source currency

Required range: x >= 0
Example:

100000

toAmount
number
required

Amount to be received in target currency

Required range: x >= 0
Example:

420000000

fxRate
number
required

Effective FX rate applied (after margin)

Required range: x > 0
Example:

4200

tradeDate
string
required

Date and time of the operation (ISO 8601)

Example:

"2025-09-29T15:00:00Z"

status
enum<string>
default:PENDING
required

Status of the monetization

Available options:
PENDING,
SETTLED,
CANCELED
Example:

"PENDING"

outProviderCode
string
required

Code of the provider where funds are sent

Example:

"CITI"

inProviderCode
string
required

Code of the provider where funds are received

Example:

"BANCOLOMBIA"

metadata
object

Optional metadata for the operation

Example:
{ "note": "Liquidity for payroll" }

Response

id
string
required
Example:

"4d23aa52-1b40-4584-a8ea-58aba6099c5c"

fromCurrency
string
required
Example:

"USD"

toCurrency
string
required
Example:

"COP"

fromAmount
number
required
Example:

100000

toAmount
number
required
Example:

420000000

fxRate
number
required
Example:

4200

tradeDate
string<date-time>
required
Example:

"2025-09-29T15:00:00.000Z"

status
enum<string>
required
Available options:
PENDING,
SETTLED,
CANCELED
Example:

"PENDING"

outProviderCode
string
required
Example:

"CITI"

inProviderCode
string
required
Example:

"BANCOLOMBIA"

createdAt
string<date-time>
required
Example:

"2025-09-29T15:00:00.000Z"

updatedAt
string<date-time>
required
Example:

"2025-09-29T15:00:00.000Z"

metadata
object
Example:
{ "note": "Liquidity for payroll" }