Questions tagged [lending-club-api]

A stateless RESTful interface for Lending Club to retrieve account and loan information.

An API provided Lending Club to provide users access to information about their account, all their notes, as well as available loans.

This interface is provided as a stateless RESTful service that can be accessed by anyone with an account on lendingclub.com.

9 questions
3
votes
1 answer

Accessing Lending Club Loan listing through their API

I'm trying to get the loan listing from Lending Club through their official API provided here: https://www.lendingclub.com/developers/listed-loans.action I'm using python 'requests' module to make the call, below is the code that I tried: import…
2
votes
1 answer

LendingClub.com API Internal server Error for Buying Notes on Secondary Market

I am attempting to buy Notes of the secondary market of Lending club and I keep getting "Internal server error". I have asked Lending club support multiple times too, but they are clueless. I also tried following this post , but no luck…
hdsouza
  • 354
  • 4
  • 17
1
vote
1 answer

LendingClub Rest API Submit Order reponse 500 Internal Server Error

I have the below code which i've written after looking over many over modules and questions on stack, but i keep getting back a 500 reponse error when trying to submit an order? the text of the resposne is always something like "Internal sever…
GoBlue_MathMan
  • 1,048
  • 2
  • 13
  • 20
1
vote
1 answer

Web scraping with log in for Lending club

I am trying to scrape the current loan note status from the url column of the lending club download data. For example https://lendingclub.com/browse/loanDetail.action?loan_id=104046830 and it requires log in to extract info. I've followed the steps…
Shirley
  • 13
  • 3
0
votes
1 answer

Lending Club Folio secondary market listings API call not working

I am trying to use this Python code to access the Folio API for the secondary market listings. Similar code worked for me in the primary Lending Club listings. This returns an error code [500], an internal error. import requests lc_InvestorId =…
scottlittle
  • 18,866
  • 8
  • 51
  • 70
0
votes
1 answer

LendingClub.com API 500 Error for Buying Notes on Secondary Market

I have been able to make API requests with other endpoints just fine, but the endpoint for making buys does not seem to work at all. It seems like it is a server error on their end, but I figured I would ask on here just in case I am making a…
0
votes
1 answer

How to display resources of a restful API

I am trying to display the resources and associated subresources of a restful API I am working with (https://api.lendingclub.com/api/investor//). If resources aren't documented, is there any way to find them?
mjk23
  • 1
  • 1
0
votes
2 answers

Lending Club API with R

I am trying to pull data with Lending Club's API with R: https://www.lendingclub.com/developers/lc-api.action but I am unsure how to do it. This is what I have now but I keep getting an unauthorized error. I called Lending Club for API support…
NoVice
  • 43
  • 5
0
votes
1 answer

LendingClub API OrderSubmitOrders action

I am attempting to interface with the LendingClub API using SOAP. I've generated some classes using wsdl2php. The wsdl file can be found here: https://www.lendingclub.com/ws/1.3?wsdl I've successfully executed 4 of the 5 API methods, but the submit…