Catalog/eng-pressure-force

Calculators

Pressure / force calculator API

Convert between force and pressure over an area (P = F/A) with kPa, psi, and bar equivalents. Answers 'pressure of 1000N over 0.5 m²','force from this pressure and area','convert Pa to psi for a given load'.

Price$0.01per request
MethodPOST
Route/v1/calc/eng-pressure-force
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calcengineeringphysicspressureforcepsibarhydraulics
API URLhttps://x402.hexl.dev/v1/calc/eng-pressure-force
Integration docs
Example request
{
  "forceN": 1000,
  "areaM2": 0.5
}
Example response
{
  "forceN": 1000,
  "areaM2": 0.5,
  "pressurePa": 2000,
  "pressureKPa": 2,
  "pressurePsi": 0.290075,
  "pressureBar": 0.02,
  "formula": "P = F / A"
}
Input schema
{
  "type": "object",
  "required": [
    "areaM2"
  ],
  "properties": {
    "areaM2": {
      "type": "number",
      "description": "square metres",
      "examples": [
        0.5
      ]
    },
    "forceN": {
      "type": "number",
      "description": "newtons",
      "examples": [
        1000
      ]
    },
    "pressurePa": {
      "type": "number",
      "description": "pascals",
      "examples": [
        2000
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}