API Test keys

API Test keys

Fetch All Payments (With Expanded EMI Details)

GET
/v1/payments?expand[]=emi

Click to copy

Use this endpoint to retrieve the expanded EMI plan details of the payments, in which the payment method is emi.

Watch Out!

EMI is not available in Malaysia.

Is this page helpful?

Curl

change language

change language

1
curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET]
2
-X GET https://api.razorpay.com/v1/payments?expand[]=emi

Success

Failure

1
{
2
"entity": "collection",
3
"count": 2,
4
"items": [
5
{
6
"id": "pay_KbCVlLqUbb3VhA",
7
"entity": "payment",
8
"amount": 400000,
9
"currency": "INR",
10
"status": "authorized",
11
"order_id": null,
12
"invoice_id": null,
13
"international": false,
14
"method": "emi",
15
"amount_refunded": 0,
16
"refund_status": null,
17
"captured": false,
18
"description": "Test Transaction",
19
"card_id": "card_KbCVlPnxWRlOpH",
20
"bank": "HDFC",
21
"wallet": null,
22
"vpa": null,
23
"email": "gaurav.kumar@example.com",
24
"contact": "+919000090000",
25
"notes": {
26
"address": "Razorpay Corporate Office"
27
},
28
"fee": null,
29
"tax": null,
30
"error_code": null,
31
"error_description": null,
32
"error_source": null,
33
"error_step": null,
34
"error_reason": null,
35
"acquirer_data": {
36
"auth_code": "205480"
37
},
38
"emi": {
39
"issuer": "HDFC",
40
"type": "credit",
41
"rate": 1500,
42
"duration": 24
43
},
44
"created_at": 1667398779
45
},
46
{
47
"id": "pay_KbCUSPzYZdEVGA",
48
"entity": "payment",
49
"amount": 300000,
50
"currency": "INR",
51
"status": "authorized",
52
"order_id": null,
53
"invoice_id": null,
54
"international": false,
55
"method": "emi",
56
"amount_refunded": 0,
57
"refund_status": null,
58
"captured": false,
59
"description": "Test Transaction",
60
"card_id": "card_KbCUSTVRUci85O",
61
"bank": "HDFC",
62
"wallet": null,
63
"vpa": null,
64
"email": "gaurav.kumar@example.com",
65
"contact": "+919000090000",
66
"notes": {
67
"address": "Razorpay Corporate Office"
68
},
69
"fee": null,
70
"tax": null,
71
"error_code": null,
72
"error_description": null,
73
"error_source": null,
74
"error_step": null,
75
"error_reason": null,
76
"acquirer_data": {
77
"auth_code": "102251"
78
},
79
"emi": {
80
"issuer": "HDFC",
81
"type": "credit",
82
"rate": 1500,
83
"duration": 12
84
},
85
"created_at": 1667398705
86
}
87
]
88
}
Query Parameters
from
integer

UNIX timestamp, in seconds, from when payments are to be fetched.

to
integer

UNIX timestamp, in seconds, till when payments are to be fetched.

count
integer

Number of payments to be fetched.
Default value is 10. Maximum value is 100. This can be used for pagination, in combination with the skip parameter.

skip
integer

Number of records to be skipped while fetching the payments.

expand[]
array

Used to retrieve additional information about the payment, the method used to make the payment. The response will include a sub-entity if this parameter is used.
Possible value:

  • card: Expanded card details, usable for card payments.

Response Parameters
id
string

Unique identifier of the payment.

entity
string

Indicates the type of entity.

amount
integer

The payment amount in currency subunits. For example, for an amount of RM 1.00 enter 100.

currency
string

The currency in which the payment is made.

status
string

The status of the payment. Possible values:

  • created
  • authorized
  • captured
  • refunded
  • failed

method
string

The payment method used for making the payment. Possible values:

  • card
  • fpx
  • wallet

order_id
string

Order id, if provided. Know more about

.

description
string

Description of the payment, if any.

international
boolean

Indicates whether the payment is done via an international card or a domestic one.

refund_status
string

The refund status of the payment. Possible values:

  • null
  • partial
  • full

amount_refunded
integer

The amount refunded in currency subunits. For example, if amount_refunded = 100, it is equal to RM 1.00.

captured
boolean

Indicates if the payment is captured.

email
string

Customer email address used for the payment.

contact
string

Customer contact number used for the payment.

fee
integer

Fee (including tax) charged by Curlec.

tax
integer

Tax charged for the payment.

error_code
string

Error that occurred during payment. For example, BAD_REQUEST_ERROR.

error_description
string

Description of the error that occurred during payment. For example, Payment processing failed because of incorrect OTP.

error_source
string

The point of failure. For example, customer.

error_step
string

The stage where the transaction failure occurred. The stages can vary depending on the payment method used to complete the transaction. For example, payment_authentication.

error_reason
string

The exact error reason. For example, incorrect_otp.

notes
json object

Contains user-defined fields, stored for reference purposes.

created_at
integer

Timestamp, in UNIX format, on which the payment was created.

card_id
string

The unique identifier of the card used by the customer to make the payment.

card
object

Details of the card used to make the payment.

Show child parameters (8)

bank
string

The 4-character bank code which the customer's account is associated with.

wallet
string

The name of the wallet used by the customer to make the payment. For example, grabpay.

acquirer_data
array

A dynamic array consisting of a unique reference number.

Show child parameters (2)

Errors

The API {key/secret} provided is invalid.

Error Status: 4xx

The API credentials passed in the API call differ from the ones generated on the Dashboard.

Solution

Value of each expand must be one of following types: card, emi, transaction, refunds, offers, token, transaction.settlement.

Error Status: 400

The value for the expand parameter is incorrect.

Solution

Fetch All Payments (With Expanded EMI Details)

GET
/v1/payments?expand[]=emi

Click to copy

Use this endpoint to retrieve the expanded EMI plan details of the payments, in which the payment method is emi.

Watch Out!

EMI is not available in Malaysia.

Is this page helpful?

Query Parameters
from
integer

UNIX timestamp, in seconds, from when payments are to be fetched.

to
integer

UNIX timestamp, in seconds, till when payments are to be fetched.

count
integer

Number of payments to be fetched.
Default value is 10. Maximum value is 100. This can be used for pagination, in combination with the skip parameter.

skip
integer

Number of records to be skipped while fetching the payments.

expand[]
array

Used to retrieve additional information about the payment, the method used to make the payment. The response will include a sub-entity if this parameter is used.
Possible value:

  • card: Expanded card details, usable for card payments.

Response Parameters
id
string

Unique identifier of the payment.

entity
string

Indicates the type of entity.

amount
integer

The payment amount in currency subunits. For example, for an amount of RM 1.00 enter 100.

currency
string

The currency in which the payment is made.

status
string

The status of the payment. Possible values:

  • created
  • authorized
  • captured
  • refunded
  • failed

method
string

The payment method used for making the payment. Possible values:

  • card
  • fpx
  • wallet

order_id
string

Order id, if provided. Know more about

.

description
string

Description of the payment, if any.

international
boolean

Indicates whether the payment is done via an international card or a domestic one.

refund_status
string

The refund status of the payment. Possible values:

  • null
  • partial
  • full

amount_refunded
integer

The amount refunded in currency subunits. For example, if amount_refunded = 100, it is equal to RM 1.00.

captured
boolean

Indicates if the payment is captured.

email
string

Customer email address used for the payment.

contact
string

Customer contact number used for the payment.

fee
integer

Fee (including tax) charged by Curlec.

tax
integer

Tax charged for the payment.

error_code
string

Error that occurred during payment. For example, BAD_REQUEST_ERROR.

error_description
string

Description of the error that occurred during payment. For example, Payment processing failed because of incorrect OTP.

error_source
string

The point of failure. For example, customer.

error_step
string

The stage where the transaction failure occurred. The stages can vary depending on the payment method used to complete the transaction. For example, payment_authentication.

error_reason
string

The exact error reason. For example, incorrect_otp.

notes
json object

Contains user-defined fields, stored for reference purposes.

created_at
integer

Timestamp, in UNIX format, on which the payment was created.

card_id
string

The unique identifier of the card used by the customer to make the payment.

card
object

Details of the card used to make the payment.

Show child parameters (8)

bank
string

The 4-character bank code which the customer's account is associated with.

wallet
string

The name of the wallet used by the customer to make the payment. For example, grabpay.

acquirer_data
array

A dynamic array consisting of a unique reference number.

Show child parameters (2)

Errors

The API {key/secret} provided is invalid.

Error Status: 4xx

The API credentials passed in the API call differ from the ones generated on the Dashboard.

Solution

Value of each expand must be one of following types: card, emi, transaction, refunds, offers, token, transaction.settlement.

Error Status: 400

The value for the expand parameter is incorrect.

Solution

Curl

change language

change language

1
curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET]
2
-X GET https://api.razorpay.com/v1/payments?expand[]=emi

Success

Failure

1
{
2
"entity": "collection",
3
"count": 2,
4
"items": [
5
{
6
"id": "pay_KbCVlLqUbb3VhA",
7
"entity": "payment",
8
"amount": 400000,
9
"currency": "INR",
10
"status": "authorized",
11
"order_id": null,
12
"invoice_id": null,
13
"international": false,
14
"method": "emi",
15
"amount_refunded": 0,
16
"refund_status": null,
17
"captured": false,
18
"description": "Test Transaction",
19
"card_id": "card_KbCVlPnxWRlOpH",
20
"bank": "HDFC",
21
"wallet": null,
22
"vpa": null,
23
"email": "gaurav.kumar@example.com",
24
"contact": "+919000090000",
25
"notes": {
26
"address": "Razorpay Corporate Office"
27
},
28
"fee": null,
29
"tax": null,
30
"error_code": null,
31
"error_description": null,
32
"error_source": null,
33
"error_step": null,
34
"error_reason": null,
35
"acquirer_data": {
36
"auth_code": "205480"
37
},
38
"emi": {
39
"issuer": "HDFC",
40
"type": "credit",
41
"rate": 1500,
42
"duration": 24
43
},
44
"created_at": 1667398779
45
},
46
{
47
"id": "pay_KbCUSPzYZdEVGA",
48
"entity": "payment",
49
"amount": 300000,
50
"currency": "INR",
51
"status": "authorized",
52
"order_id": null,
53
"invoice_id": null,
54
"international": false,
55
"method": "emi",
56
"amount_refunded": 0,
57
"refund_status": null,
58
"captured": false,
59
"description": "Test Transaction",
60
"card_id": "card_KbCUSTVRUci85O",
61
"bank": "HDFC",
62
"wallet": null,
63
"vpa": null,
64
"email": "gaurav.kumar@example.com",
65
"contact": "+919000090000",
66
"notes": {
67
"address": "Razorpay Corporate Office"
68
},
69
"fee": null,
70
"tax": null,
71
"error_code": null,
72
"error_description": null,
73
"error_source": null,
74
"error_step": null,
75
"error_reason": null,
76
"acquirer_data": {
77
"auth_code": "102251"
78
},
79
"emi": {
80
"issuer": "HDFC",
81
"type": "credit",
82
"rate": 1500,
83
"duration": 12
84
},
85
"created_at": 1667398705
86
}
87
]
88
}