Get loan

Retrieves a single loan.

Authentication

AuthorizationBearer
Bearer token. Use `ss_live_…` for live data or `ss_test_…` for the sandbox (test mode). See [Authentication](https://docs.spreadspace.app/api/authentication).

Path parameters

idstringRequired
The loan's id.

Headers

SpreadSpace-VersionstringOptionalformat: "^\d{4}-\d{2}-\d{2}$"
Pin the API version, e.g. `2026-07-19`. Omit to get the latest. See [Versioning](https://docs.spreadspace.app/api/versioning).

Response headers

X-Request-IDstringOptional
Correlation ID for this request. Quote it in support tickets.
SpreadSpace-VersionstringOptional

The API surface version the server resolved for this request. Always present, regardless of whether the client supplied the request-side SpreadSpace-Version header. Default: 2026-07-19.

RateLimit-Limitinteger
Request budget of the endpoint's rate-limit policy per 60-second sliding window. See [Rate limits](https://docs.spreadspace.app/api/rate-limits).
RateLimit-Remaininginteger

Requests left in the current window. Suppressed on 429 responses produced outside the rate limiter (for example a usage throttle), where a remaining budget would be misleading.

RateLimit-Resetinteger

Seconds until a guaranteed-fresh window.

RateLimit-PolicystringOptional

The active policy in limit;w=window-seconds form.

Response

OK
loan_idstring
borrower_idstring
assigneeslist of objects
statusstring
created_atdatetime
updated_atdatetime
borrowerobject or null

Borrower summary nested into a LoanResponse when the caller requests ?include=borrower on a loan list endpoint. Carries the borrower metadata the list surface already exposes (name, entity type, location, industry), never a tax identifier, so a per-loan borrower read is not needed.

borrower_namestring or nullOptional
loan_typestring or nullOptional
loan_sub_typestring or nullOptional
loan_type_labelstring or nullOptional
loan_sub_type_labelstring or nullOptional
namestring or nullOptional
loan_numberstring or nullOptional
requested_amountdouble or nullOptional
rate_typestring or nullOptional
interest_ratedouble or nullOptional
term_monthsinteger or nullOptional
prioritystring or nullOptional
notesstring or nullOptional
guarantorslist of strings or nullOptional

Guarantor names declared on the loan. Gated like Notes: null when the caller may not read the loan file, and null when none were declared.

documentslist of objects or nullOptional

Nested per-loan document summaries. Populated only when the loan list endpoint was called with ?include=documents and the caller may read this loan, and null otherwise. The field is always present on the wire; an empty list means the loan has no documents yet.

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
429
Too Many Requests Error
500
Internal Server Error