# Xero OAuth 2 Identity Service API **Provider:** Xero OAuth 2 Identity Service **Category:** auth **Base URL:** `https://api.xero.com` **Auth:** basic — `Authorization: Basic BASE64(username:password)` **Rate Limit:** 60 req/min per app **Free Tier:** Yes — available **Pricing:** Enterprise / contact sales (subscription) **Docs:** https://developer.xero.com ## Description These endpoints are related to managing authentication tokens and identity for Xero API ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://api.xero.com/Connections` | Retrieves the connections for this user | | DELETE | `https://api.xero.com/Connections/{id}` | Deletes a connection for this user (i.e. disconnect a tenant) | ## Authentication HTTP Basic Auth — base64-encoded username:password ``` Authorization: Basic BASE64(username:password) ``` ## Sample Request ```bash curl -X GET 'https://api.xero.com/Connections' \ -H 'Authorization: Basic BASE64(username:password)' ``` ## Sample Response ```json {} ``` ## Pricing Details Xero accounting platform. Free for developer apps. Pricing based on the Xero subscription of the connected business. API access is free for developers and partners. --- *Source: [API Map](https://apimap.dev/apis/xero-oauth-2-identity-service/) — CC BY 4.0*