Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.breakcold.com/llms.txt

Use this file to discover all available pages before exploring further.

Attribute type

currency

Use it for

Money amounts such as deal value, budget, ARR, or contract size.

Request value

Send { "amount": number, "currencyCode": "USD" } using an ISO currency code.
{
  "fields": {
    "amount": {
      "amount": 12000,
      "currencyCode": "USD"
    }
  }
}

Returned shape

Returns { "amount", "currencyCode" }.

Example response

{
  "fields": {
    "amount": {
      "amount": 12000,
      "currencyCode": "USD"
    }
  }
}