> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lms.bsa.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a loan product

> Fetch a single loan product by ID.

## Path parameters

<ParamField path="product_id" type="string" required>
  Loan product ID (as returned by [List](/loan-products/list)).
</ParamField>

## Example

```bash theme={null}
curl -sf "$BASE/v1/loan-products/1" \
  -H "Authorization: Bearer $TOKEN"
```

## Response

`200 OK` returns the loan product object — same shape as the entries
in [the list endpoint](/loan-products/list).

## Errors

| Code        | When                    |
| ----------- | ----------------------- |
| `not_found` | No product with that ID |
