[UNDER DEVELOPMENT] This functionality is being developed and the page will be updated when the endpoint is made available.
Thank you.
The /orders endpoint will allow you to see the orders that you have placed but are not yet in your account. Some orders may take three days or more to convert into a holding. Once the order has converted to a holding, you will find the order in your /holdings endpoint. See the GET Holdings page for more information on how to use the /holdings endpoint.
GET https://investor-api.fundingcircle.us/api/v2/orders
{
"_embedded": {
"orders": [
{
"transaction_id": 1835811,
"purchased_amount_cents": 11200000,
"updated_at": "2015-06-30T12:05:43-07:00",
"interest_rate": 0.0899,
"status": "pending",
"id": "99deo2a5-3b08-409c-b6da-3fd6346a916c",
"truncated": false,
"listing_id": "654o9b7a-bab0-4ce9-8ab2-52ef874f2713",
"investor_id": "46082790-0018-o76a-8a63-c69e766f5a9b",
"accrued_interest_cents": 0,
"_links": {
"listing": {
"href": "https://investor-api.fc-sandbox.us/api/v2/listings/654o9b7a-bab0-4ce9-8ab2-52ef874f2713"
},
"self": {
"href": "https://investor-api.fc-sandbox.us/api/v2/orders/99deo2a5-3b08-409c-b6da-3fd6346a916c"
}
},
"original_purchase_amount_cents": 11200000,
"created_at": "2015-06-30T12:05:43-07:00",
"payment_due_at": "2015-07-06T23:59:59.000-07:00"
},
"_links": {
"self": {
"href": "https://investor-api.fundingcircle.us/api/v2/orders"
}
}
}
Key | Data Type | Description |
---|---|---|
transaction_id | STRING | The unique identifier of the transaction |
purchased_amount_cents | INTEGER | How much the order was placed for (including adjustments) |
updated_at | STRING | When the order was last updates |
interest_rate | DECIMAL | The amount that the borrower will pay on the loan |
status | STRING | The state of the loan |
id | STRING | The unique identifier of the order |
truncated | BOOL | |
listing_id | STRING | The unique identifier of the listing the order came from |
investor_id | STRING | The unique identifier ot the investor who made the order |
accrued_interest_cents | INTEGER | How much interst has accrued on the loan but has not been credited to the investors account |
original_purchase_amount_cents | INTEGER | The amount that the order was placed for. |
created_at | STRING | When the order was made |
payment_due_at | STRING | When payment is owed to Funding Circle for the |