Developer Resources
API Documentation
Integrate AI-Guard Lite into your applications with our RESTful API.
Base URL
https://api.aiguardlite.comAuthentication
POST
/api/v1/auth/loginAuthenticate user and receive access token
Request
{
"email": "[email protected]",
"password": "your_password"
}Response
{
"access_token": "eyJhbGciOiJIUzI1NiIs...",
"token_type": "bearer",
"expires_in": 3600
}POST
/api/v1/auth/refreshRefresh an expired access token
Request
{
"refresh_token": "your_refresh_token"
}Response
{
"access_token": "eyJhbGciOiJIUzI1NiIs...",
"token_type": "bearer",
"expires_in": 3600
}Rate Limits
| Plan | Requests/minute | Requests/day |
|---|---|---|
| Enterprise | 100 | 10,000 |
| Business | 500 | 50,000 |
| Custom | Unlimited | Unlimited |