I have a similar request, except I’ve already gotten most of my program off the ground: it can buy notes from the secondary market, list notes that I’m already holding, and get my account summary. However, I have not been able to successfully list my open buy/sell transactions. Going by the documentation, I’m supposed to connect to "
https://api.lendingclub.com/api/investor/v1/secondarymarket/accounts/#########/orders". I get a 4xx error in my C# program. And when I tried to debug it in JavaScript (because debugging HTTP/JSON responses in C# is a pain in the ass for me), I got back this object:
{
"errors": [
{
"field": null,
"code": "terms-of-use",
"message": "Traffic from your IP address appears to be in violation of our terms of use. Your support code is #####################. If you believe you received this message in error, please contact support@lendingclub.com with your support code."
}
]
}
At first I though I had exceeded some limit, but it turned out I had already considered rate limits in my code. And according to another topic (
https://forum.lendacademy.com/index.php?topic=4925.0) there is some
secret API that I don’t know about that can list these open transactions?