Equation Check

Equation Validator Endpoint

The Equation Check endpoint allows users to submit an equation in a text string format and receive a result based on if the equation is valid or not, and get the result of it.

Endpoint

  • URL: https://api.erensko.xyz/v1/equation-check

  • Method: GET

  • Description: This endpoint takes an equation and validates it.

URL Parameters

Key
Value

equation

The equation to check in your request to see if it is valid.

Headers

Key
Value

Authorization

Your own personal API key, create one by clicking here. This is required.

Example Request

GET https://api.erensko.xyz/v1/equation-check?equation=100-40

Response Example

{
  "valid": "true",
  "result": "60"
}

Last updated