> ## 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.

# Currency

> Use currency attributes in the Breakcold API.

## 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.

```json theme={null}
{
  "fields": {
    "amount": {
      "amount": 12000,
      "currencyCode": "USD"
    }
  }
}
```

## Returned shape

Returns `{ "amount", "currencyCode" }`.

## Example response

```json theme={null}
{
  "fields": {
    "amount": {
      "amount": 12000,
      "currencyCode": "USD"
    }
  }
}
```
