IdenIden Docs
API Reference

Overview

Iden's REST API for programmatic access to your organization's identity governance data.

The Iden API provides programmatic access to your organization's apps, users, accounts, tickets, and tasks. Use the Bridge API to connect custom applications with full sync and provisioning capabilities.

Base URL

https://developer.idenhq.com/org/{tenant_slug}/

Authentication

All requests require an API key passed in the Authorization header:

curl -H "Authorization: Api-Key <your-api-key>" \
  https://developer.idenhq.com/org/acme/api/apps/

API keys are created and managed in Settings → API Keys in your organization's dashboard. This page also displays your organization slug, which is required for the base URL. You can set expiry periods of 7, 30, 90 days, or indefinite.

Pagination

All list endpoints return paginated responses using limit and offset query parameters:

{
  "count": 142,
  "next": "https://developer.idenhq.com/org/acme/api/apps/?limit=50&offset=50",
  "previous": null,
  "results": [...]
}

Default page size is 50 items.

Errors

StatusMeaning
401Missing or invalid API key
403API key revoked or expired
404Resource not found

Endpoints

On this page