Datagrid lets you ingest data from 100+ connectors and build AI Agents on top of it.

Get your API Key

Head over to the Datagrid console to claim your API key. Once you’ve claimed your API key, export it as an environment variable.

export DATAGRID_API_KEY="your_api_key_here"

Install the SDK

We offer incredibly easy-to-use client SDKs for Python and Typescript/Javascript

pip install datagrid_ai

Make your first request

import os
from datagrid_ai import Datagrid

client = Datagrid(
  # This is the default and can be omitted
  api_key=os.environ.get("DATAGRID_API_KEY"), 
)

response = client.converse(
  prompt="Hello world!",
)

print(response.content[0].text)