Capvant

List deals routed to you

get
https://sandbox.capvant.com/v1/deals
GET
/deals

Authorization

ApiKeyAuth
X-API-Key<token>

Lender keys start with cv_live_; Partner keys start with cv_pk_. Shown once at creation, sent on every request.

In: header

Query Parameters

status?string

Filter by your reported lender_status.

Value in

  • "new"
  • "in_review"
  • "offer_made"
  • "declined"
  • "funded"
limit?integer
Range1 <= value <= 100
Default25
cursor?string

Opaque cursor from a previous page's next_cursor.

Response Body

application/json

application/json

application/json

application/json

Shell
curl -X GET "https://sandbox.capvant.com/deals"
JSON
{  "deals": [    {      "ref": "string",      "business": {        "name": "string",        "company_number": "string"      },      "contact": {        "first_name": "string",        "last_name": "string"      },      "amount": 0,      "currency": "GBP",      "product": "asset_finance",      "market": "string",      "status": "submitted",      "lender_status": "string",      "statements_available": true,      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z"    }  ],  "next_cursor": "string"}