Skip to main content

Getting Started

Your platform administrator provides:

  • The DoubleDino URL.
  • An API key.
  • The connected data source.

Every request requires the API key:

x-api-key: your-api-key

Check the connection

Verify that the DoubleDino instance is online:

curl -G "http://localhost:8080/meta" \
-H "x-api-key: your-api-key"

Example response:

{
"status": "online",
"type": "postgres"
}

The type field identifies the connected data source.

Query the source

DoubleDino uses the query format of the connected data source.

For example, PostgreSQL uses normal SQL:

curl -G "http://localhost:8080/query" \
--data-urlencode "q=SELECT * FROM orders WHERE id=1" \
-H "x-api-key: your-api-key"

The query runs against the connected source. Returned values are transformed before they reach you.

Choose your data source

Use the guide for your connected source: