Skip to content

Get product details

Request

Retrieve detailed information about a specific loan product by ID. Returns product name, description, terms, amortization period, rate type, and payment frequency.

Security
ApiKeyAuth
Path
idstringrequired
curl -i -X GET \
  'https://api.pioneerft.com/api/public/v1/products/{id}' \
  -H 'Authorization: Bearer <YOUR_API Key_HERE>'

Responses

Successful response with product details

Bodyapplication/json
dataobject(PublicProduct)
Response
{ "data": { "id": "string", "name": "string", "description": "string", "monthsTerm": 0, "monthsAmortization": 0, "rateType": "fixed", "paymentFrequency": "weekly" } }