API Documentation

⌘K
POST/api/1/excel-addin/functions

Execute Function

Executes a single Excel custom function (e.g. EP.PRICE, EP.MARKETCAP) and returns the computed value

Request Body

required
application/json
object
functionstring

Function name (e.g. EP.PRICE, EP.MARKETCAP)

Example:EP.PRICE
argsarray

Function arguments (first is always the identifier)

Array of:

Responses

Was this helpful?
Request
curl -X POST \
  'https://api.eulerpool.com/api/1/excel-addin/functions' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json'
200 Response
{
  "value": null,
  "error": "string"
}