Catalog/trade-pip-value

Calculators

FX pip value API

FX pip value: pipValue = pipSize · units, converted to the account currency by the quote→account rate; 1 standard lot = 100,000 units. Deterministic FX math. Answers 'what's one pip worth on a standard lot','pip value for 0.5 lots','dollar value per pip'.

Price$0.01per request
MethodPOST
Route/v1/calc/trade-pip-value
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calctradingforexfxpiplotpip-valuecurrency
API URLhttps://x402.hexl.dev/v1/calc/trade-pip-value
Integration docs
Example request
{
  "lots": 1,
  "pipSize": 0.0001,
  "quoteToAccountRate": 1
}
Example response
{
  "units": 100000,
  "pipSize": 0.0001,
  "quoteToAccountRate": 1,
  "lots": 1,
  "pipValueQuote": 10,
  "pipValueAccount": 10,
  "formula": "pipValue = pipSize · units · (quote→account rate)"
}
Input schema
{
  "type": "object",
  "required": [],
  "properties": {
    "units": {
      "type": "number",
      "examples": [
        100000
      ]
    },
    "lots": {
      "type": "number",
      "description": "Standard lots (1 lot = 100,000 units).",
      "examples": [
        1
      ]
    },
    "pipSize": {
      "type": "number",
      "default": 0.0001,
      "examples": [
        0.0001
      ]
    },
    "quoteToAccountRate": {
      "type": "number",
      "default": 1,
      "examples": [
        1
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}