---
agent_auth:
  supported_identity_types:
    - anonymous
    - bearer
  credential_types:
    - none
  token_endpoint: https://www.gostudyoverseas.in/.well-known/oauth-authorization-server
  register_uri: https://www.gostudyoverseas.in/auth.md
  claim_uri: https://www.gostudyoverseas.in/auth.md
  revocation_uri: https://www.gostudyoverseas.in/auth.md
---

# Agent Authentication & Registration Policy (Auth.md)

## General Policy for AI Agents
Go Study Overseas provides public, unauthenticated read-only access to all university databases, scholarship guides, entrance exam structures, and course finders for automated AI agents.

## Agent Access Modes
1. **Public Information Retrieval (No Auth Required):**
   - Base URL: `https://www.gostudyoverseas.in`
   - Allowed Methods: `GET`, `HEAD`, `OPTIONS`
   - Agent Headers: Standard `User-Agent` identification welcomed.

2. **Lead Submission & Consultation Request (Rate-Limited Public Action):**
   - Target: `/#contact` / WhatsApp Connect
   - Authentication: None required for public inquiries. Protected against spam via rate-limiting and honeypots.

```json
{
  "agent_auth": {
    "supported_identity_types": ["anonymous", "bearer"],
    "credential_types": ["none"],
    "token_endpoint": "https://www.gostudyoverseas.in/.well-known/oauth-authorization-server",
    "register_uri": "https://www.gostudyoverseas.in/auth.md"
  }
}
```
