Skip to main content

API Documentation

Looms exposes its borrower-facing functionality through a set of microservices, all accessible via a single Borrower API Gateway.

API Gateway

All API calls must go through the gateway — do not call microservices directly.

Only endpoints exposed to the borrower gateway are documented here. Administrative endpoints live behind a separate gateway and are not part of this reference.

info

Gateway Base URL: https://api-borrower-test.alpha.looms.cloud

URL Structure

Each microservice has a dedicated path prefix in the gateway. The full URL for any endpoint is:

{gateway-base-url}/{service-prefix}{api-path}

For example, the Borrower Login endpoint has /api/v2/borrower/auth/login in its swagger spec, and the auth service is mounted at /auth. The real URL via the gateway is:

https://api-borrower-test.alpha.looms.cloud/auth/api/v2/borrower/auth/login

Microservices