API Configuration
| Code | Name | Description |
|---|
Requests / Minute
Requests / Day
Burst Limit
Example Request
curl -X GET \
https://api.example.com/v1/resource \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"
Example Request
const response = await fetch('https://api.example.com/v1/resource', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_TOKEN',
'Content-Type': 'application/json'
}
});
const data = await response.json();
Example Request
import requests
response = requests.get(
'https://api.example.com/v1/resource',
headers={
'Authorization': 'Bearer YOUR_TOKEN',
'Content-Type': 'application/json'
}
)
data = response.json()