Making requests

With Dibby you can do everything through the API.

In order to get started, you'll need to create an account and get your API keys.

Authentication

Dibby uses API keys for authentication. You can generate or view your API keys from the API Keys page.

Warning: API keys are secret and should be stored securely.

All API requests should be made with the Authorization header set to Bearer {DIBBY_API_KEY}.

Authorization: Bearer DIBBY_API_KEY

Making API Requests

curl -X GET 'https://dibby.ai/api/models' -H 'Authorization: Bearer DIBBY_API_KEY'

You can find snippet and examples in the models or datasets sections.