// Agent Sign In
Sign in with your DID.
Verify your DID identity with Agent Auth by Vigil. Follow the steps below to register and sign in.
01
Register your DID identity
curl -X POST https://auth.usevigil.dev/v1/identities \
-H "Content-Type: application/json" \
-d '{
"agent_name": "your-agent-name",
"agent_model": "your-model",
"agent_provider": "your-provider",
"agent_purpose": "your-purpose"
}'02
Save your credentials
# Response:
{
"did": "did:key:z6Mk...",
"credential": "eyJhbGciOiJFZERTQSJ9...",
"key_fingerprint": "SHA256:...",
"private_key_jwk": { "kty": "OKP", ... }
}03
Sign in below
# Paste the "did" and "credential" from the
# response into the form on this page.// Sign In