Use this token to authenticate API requests. Keep it secure!
How to use the API token in your requests:
# Using header
curl -H "X-API-Token: YOUR_TOKEN" http://localhost:3000/api/files
# Using Bearer token
curl -H "Authorization: Bearer YOUR_TOKEN" http://localhost:3000/api/files
# Using query parameter
curl "http://localhost:3000/api/files?token=YOUR_TOKEN"