curl "https://api.bota.dev/v1/end-users?limit=10" \
-H "Authorization: Bearer sk_live_..."
{
"data": [
{
"id": "eu_abc123",
"external_id": "user_12345",
"email": "[email protected]",
"name": "John Doe",
"metadata": {
"plan": "pro"
},
"created_at": "2025-01-15T10:30:00Z"
},
{
"id": "eu_def456",
"external_id": "user_67890",
"email": "[email protected]",
"name": "Jane Smith",
"metadata": null,
"created_at": "2025-01-14T09:00:00Z"
}
],
"has_more": true
}
Retrieve a paginated list of end users
curl "https://api.bota.dev/v1/end-users?limit=10" \
-H "Authorization: Bearer sk_live_..."
{
"data": [
{
"id": "eu_abc123",
"external_id": "user_12345",
"email": "[email protected]",
"name": "John Doe",
"metadata": {
"plan": "pro"
},
"created_at": "2025-01-15T10:30:00Z"
},
{
"id": "eu_def456",
"external_id": "user_67890",
"email": "[email protected]",
"name": "Jane Smith",
"metadata": null,
"created_at": "2025-01-14T09:00:00Z"
}
],
"has_more": true
}
curl "https://api.bota.dev/v1/end-users?limit=10" \
-H "Authorization: Bearer sk_live_..."
{
"data": [
{
"id": "eu_abc123",
"external_id": "user_12345",
"email": "[email protected]",
"name": "John Doe",
"metadata": {
"plan": "pro"
},
"created_at": "2025-01-15T10:30:00Z"
},
{
"id": "eu_def456",
"external_id": "user_67890",
"email": "[email protected]",
"name": "Jane Smith",
"metadata": null,
"created_at": "2025-01-14T09:00:00Z"
}
],
"has_more": true
}