Authentify

API Documentation

Real-time agent authorization & audit logging

Sign in to see your personal API keys and credentials.

Sign in

Base URL

https://nhxm3hlw4qcs53nnrkvalae5cy0piuew.lambda-url.us-east-2.on.aws

Endpoints

POST/v1/onboard

Create a new account and receive API key

{
  "companyName": "First Bancorp",
  "email": "you@bank.com",
  "password": "secure-password"
}
POST/v1/agents

Create a new agent with authorization rules

{
  "customerId": "24377945-71b9-4eaa-83e7-8007fdd80ba1",
  "agent_name": "credit-scorer",
  "allowed_actions": ["READ"],
  "entity_scope": "*",
  "rate_limit": 1000,
  "environment": "sandbox"
}
GET/v1/agents

List all agents for your account

curl https://nhxm3hlw4qcs53nnrkvalae5cy0piuew.lambda-url.us-east-2.on.aws/v1/agents \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -G -d "customer_id=YOUR_CUSTOMER_ID" \
  -d "environment=sandbox"
GET/v1/audit-logs

Retrieve audit logs for your agents

curl https://nhxm3hlw4qcs53nnrkvalae5cy0piuew.lambda-url.us-east-2.on.aws/v1/audit-logs \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -G -d "customer_id=YOUR_CUSTOMER_ID" \
  -d "days=7"

Questions? Check the dashboard or contact support.