Skip to main content
Gate issues an agt_ agent token for every successful signup. Developers include this token in API calls to your service. Verify it with a single HTTP call to Gate.

Verify a token

Verification response

Invalid or revoked tokens return { "data": { "valid": false } }.

Caching

The verify endpoint returns Cache-Control: max-age=60. Cache results to avoid hitting Gate on every request.

Token lifecycle

  • Issued: on every successful signup via Gate
  • Expires: 90 days after last use (rolling expiry)
  • Revoked: via POST /gate/agent-tokens/revoke or from the dashboard

What’s next