This sub-resource allows the user to see a summary of the current listing on LCX SM. The API returns a summary of the data for loans listed on the Central Marketplace of the platform, or a specific room if that query parameter is included in the payload.
Operations: GET
URL: https://api.lendingclub.com/api/lcx/v1/secondary/listings/summary
Path Parameters: None
Query Parameters:
Name | Type | Required | Description |
---|---|---|---|
roomName | String | No | Including the name of the room will limit the response from the listing summary endpoint to loans available in that specific room.If the |
Supported formats: json
For the Listings GET call, users must include the Accept: application/json header and exclude the Content-Type header.
Response Parameters:
Parameter Name | Type | Description |
---|---|---|
asOfDate | Timestamp | Effective timestamp of the listings summary response, in UTC |
roomName | String | Name of the room for which the summary applies to |
totalOutstandingPrincipal | Number | Total Outstanding Principal in current listing, in dollars |
itemCount | Number | Total number of items (Loans) in current listing |
marketStartTime | Timestamp | Current open market window start timestamp in UTC |
basketListingsCount | Number | Total number of baskets in current listing |
marketEndTime | Timestamp | Current open market window end timestamp in UTC |
upcomingMarketStartTime | Timestamp | Next open market window start timestamp in UTC |
upcomingMarketEndTime | Timestamp | Next open market window end timestamp in UTC |
Sample Response:
{
"asOfDate": "2019-12-05T17:26:27.338Z",
"roomName": "CENTRAL_MARKET",
"itemCount": 15,
"basketListingCount": 0,
"totalOutstandingPrincipal": 170.64,
"marketStartTime": "2019-12-05T14:00:00.000Z",
"marketEndTime": "2019-12-06T01:00:00.000Z",
"upcomingMarketStartTime": "2019-12-06T14:00:00.000Z",
"upcomingMarketEndTime": "2019-12-07T01:00:00.000Z"
}