This sub-resource allows the user to see a summary of the current listing on the market.
The API currently returns a summary of the data for loans listed on the Primary Marketplace of the platform, or a specific room if that query parameter is included in the payload.
Operation: GET
URL: https://api.lendingclub.com/api/lcx/v1/primary/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 parameter is excluded, the endpoint will return the summary data for the public marketplace |
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 |
itemCount | Number | Total number of items (Loans) in current listing |
totalOutstandingPrincipal | Number | Total Outstanding Principal in current listing, in dollars |
marketStartTime | Timestamp | Current open market window start timestamp in UTC |
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 Request:
https://api.lendingclub.com/api/lcx/v1/primary/listings/summary
Sample Response:
{
"asOfDate": "2020-05-23T00:04:52.296Z",
"roomName": "PRIMARY_MARKET",
"itemCount": 11,
"basketListingCount": 3,
"totalOutstandingPrincipal": 200192.35,
"marketStartTime": "2020-05-22T07:30:00.000Z",
"marketEndTime": "2020-05-23T06:30:00.000Z",
"upcomingMarketStartTime": "2020-05-26T07:30:00.000Z",
"upcomingMarketEndTime": "2020-05-27T06:30:00.000Z"
}