Notes Owned
This subresource provides a list of notes that are owned by the investor.
Operation: GET
URL: https://api.lendingclub.com/api/investor/[version]/accounts/[Investor Id]/notes
URL Parameters: Investor Id — This can be obtained from the Account Summary section on LendingClub website when a user is logged in.
Query Parameters: None.
Supported Formats: JSON, XML, CSV
Name | Type | Nullable | Description |
---|---|---|---|
loanStatus | String | No | Status |
loanId | BigDecimal | No | Loan Id |
noteId | BigDecimal | No | Note Id |
grade | String | No | Grade |
loanAmount | BigDecimal | No | Loan amount |
noteAmount | BigDecimal | No | Invested |
interestRate | BigDecimal | No | Interest rate |
orderId | BigDecimal | No | Order Id |
loanLength | integer | No | Term |
issueDate | String | Yes | Issue date |
orderDate | String | No | Order date |
loanStatusDate | String | Yes | Status date |
paymentsReceived | BigDecimal | No | Payments received to Date |
Returned value: JSON —
{ "myNotes" : [ { "loanId":11111, "noteId":22222, "orderId":33333, "interestRate":13.57, "loanLength":36, "loanStatus":"Late (31-120 days)", "grade":"C", "loanAmount":10800, "noteAmount":25, "paymentsReceived":5.88, "issueDate":"2009-11-12T06:34:02.000-08:00", "orderDate":"2009-11-05T09:33:50.000-08:00", "loanStatusDate":"2013-05-20T13:13:53.000-07:00" }, { "loanId":44444, "noteId":55555, "orderId":66666, "interestRate":14.26, "loanLength":36, "loanStatus":"Late (31-120 days)", "grade":"C", "loanAmount":3000, "noteAmount":25, "paymentsReceived":7.65, "issueDate":"2009-09-18T01:04:34.000-07:00", "orderDate":"2009-09-15T11:28:12.000-07:00", "loanStatusDate":"2013-05-23T17:27:51.000-07:00" } ] }
Returned value: XML —
C 13.57 2009-11-12T06:34:02.000-08:00 10800 11111 36 Late (31-120 days) 2013-05-20T13:13:53.000-07:00 25 22222 2009-11-05T09:33:50.000-08:00 33333 5.88 C 14.26 2009-09-18T01:04:34.000-07:00 3000 44444 36 Late (31-120 days) 2013-05-23T17:27:51.000-07:00 25 55555 2009-09-15T11:28:12.000-07:00 66666 7.65
Returned value: CSV —
"LOAN_ID","ORDER_ID","NOTE_ID","INVESTED","INTEREST_RATE","GRADE","TERM","PRINCIPAL_REMAINING","PAYMENTS_RECEIVED_TO_DATE","STATUS","ISSUE_DATE","ORDER_DATE","STATUS_DATE" "11111","22222","33333","25","13.57","C","36","10800","5.88","Late (31-120 days)","2009-11-12T06:34:02.000-08:00","2009-11-05T09:33:50.000-08:00","2013-05-20T13:13:53.000-07:00" "44444","55555","66666","25","14.26","C","36","3000","7.65","Late (31-120 days)","2009-09-18T01:04:34.000-07:00","2009-09-15T11:28:12.000-07:00","2013-05-23T17:27:51.000-07:00"