POST
/
delphi
/
query
curl --request POST \
  --url https://app.delphihq.com/api/delphi/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-CLIENT-ID: <api-key>' \
  --data '{
  "input": "<string>",
  "fields": [
    "<string>"
  ],
  "filters": {},
  "type": "cube",
  "notes": [
    "<string>"
  ],
  "cubes": [
    {
      "name": "<string>",
      "title": "<string>",
      "description": "<string>",
      "measures": [
        {
          "name": "<string>",
          "title": "<string>",
          "description": "<string>",
          "type": "<string>"
        }
      ],
      "dimensions": [
        {
          "name": "<string>",
          "title": "<string>",
          "description": "<string>",
          "type": "<string>"
        }
      ]
    }
  ]
}'
{
  "status": "ok",
  "result": {
    "query": {}
  }
}

Authorizations

X-API-KEY
string
header
required
X-CLIENT-ID
string
header
required

Body

application/json
input
string
required
fields
string[]
required
filters
object
type
enum<string>
Available options:
cube
notes
string[]
cubes
object[]

Response

200 - application/json
Query
status
enum<string>
Available options:
ok
result
object