Official SDKs for integrating with AmDital from your application. Currently, use the REST API directly or wrap it with your preferred HTTP client library.
Status
No installation requiredExample
curl https://api.amdital.com/v1/workspaces \
-H "Authorization: Bearer YOUR_API_KEY"
# Response:
{
"docs": [
{
"id": "ws_123abc",
"workspace": {
"id": "ws_123abc",
"name": "My Agency",
"slug": "my-agency"
},
"role": "owner"
}
],
"totalDocs": 1,
"hasNextPage": false
}Status
Official SDKs coming soonExample
// TypeScript SDK support planned
// For now, use the REST API directly
// or any HTTP client library:
import axios from 'axios'
const response = await axios.get(
'https://api.amdital.com/v1/workspaces',
{ headers: { Authorization: `Bearer ${API_KEY}` } }
)Status
Official SDKs coming soonExample
# Python SDK support planned
# For now, use the REST API directly
# or any HTTP client library:
import requests
headers = {"Authorization": f"Bearer {API_KEY}"}
response = requests.get(
"https://api.amdital.com/v1/workspaces",
headers=headers
)