Skip to main content
GET
https://api.easycred.in
/
api
/
v1
/
partner
/
leads
List Applications
curl --request GET \
  --url https://api.easycred.in/api/v1/partner/leads \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Nonce: <x-nonce>' \
  --header 'X-Signature: <x-signature>' \
  --header 'X-Timestamp: <x-timestamp>'
{
  "success": true,
  "data": {
    "leads": [
      {
        "applicationId": "<string>",
        "loanType": "<string>",
        "loanAmount": 123,
        "status": "<string>",
        "submittedAt": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 123,
    "page": 123,
    "limit": 123
  }
}

Authorizations

Authorization
string
header
required

API key of the form ec_(live|test). Scopes are listed per operation.

Headers

X-Signature
string
required

HMAC-SHA256 signature over method, path, timestamp, nonce and raw body.

X-Timestamp
string
required

Unix epoch seconds. Requests outside the tolerance window are rejected.

X-Nonce
string
required

Unique per-request nonce. Replays are rejected.

Query Parameters

page
integer
Required range: x >= 1
limit
integer
Required range: 1 <= x <= 100

Response

Success

success
boolean
required
data
object
required