API Authentication¶
Document authentication requirements and token handling.
Suggested sections¶
- Supported auth methods
- Token issuance
- Token refresh and expiry
- Required headers
- Common authentication errors
Example cURL placeholder¶
curl -X GET "https://api.example.com/v1/resource" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"