Key Features
API Key Management
Create, rotate, and manage API keys
Webhooks
Configure and test webhook endpoints
Usage Analytics
Monitor API usage and costs
Audit Logs
Track all API activity
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
New: French documentation now available! Switch to French
Manage API keys, webhooks, and monitor usage
https://api.txcloud.io/v1/devex
curl https://api.txcloud.io/v1/devex/api-keys \
-H "Authorization: Bearer txc_live_your_api_key"
import TXCloud from '@txcloud/sdk';
const txcloud = new TXCloud('your_api_key');
// Create a new API key
const newKey = await txcloud.devex.apiKeys.create({
name: 'Production Key',
environment: 'live',
permissions: ['identity:write', 'fraud:read']
});
// Set up a webhook
const webhook = await txcloud.devex.webhooks.create({
url: 'https://your-app.com/webhooks/txcloud',
events: ['verification.completed', 'fraud.alert']
});
| Method | Endpoint | Description |
|---|---|---|
| GET | /devex/api-keys | List API keys |
| POST | /devex/api-keys | Create API key |
| DELETE | /devex/api-keys/{id} | Revoke API key |
| GET | /devex/webhooks | List webhooks |
| POST | /devex/webhooks | Create webhook |
| POST | /devex/webhooks/{id}/test | Test webhook |
| GET | /devex/usage | Get usage stats |