Complete documentation for developers
All API requests require authentication using an API key. Include your key in the Authorization header:
curl -H "Authorization: Bearer your_api_key_here" \
https://api.starboard.dev/v1/users
Retrieve user information by ID.
Name | Type | Description |
---|---|---|
id |
string | The user ID |
{
"id": "usr_123456789",
"email": "user@example.com",
"name": "John Doe",
"created_at": "2024-01-15T10:30:00Z",
"plan": "premium"
}
Create a new integration.
{
"name": "My Integration",
"source": {
"type": "database",
"connection_string": "postgresql://user:pass@host:5432/db"
},
"destination": {
"type": "api",
"endpoint": "https://api.example.com/data"
}
}