Skip to main content

Authentication

GLBWinTK authenticates API requests with a bearer token.

Send your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Also send JSON requests with:

Content-Type: application/json

Example

curl https://api.glbwintk.com/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"

Key Handling

  • Keep API keys out of source code.
  • Use environment variables in local tools and deployment platforms.
  • Rotate a key if it appears in logs, screenshots, commits, or shared messages.

Environment Variable Example

export GLBWINTK_API_KEY="YOUR_API_KEY"

Then use it in requests:

curl https://api.glbwintk.com/v1/models \
-H "Authorization: Bearer $GLBWINTK_API_KEY"