Fetch All Payments (With Expanded EMI Details)
GET/v1/payments?expand[]=emiClick to copy
Use this endpoint to retrieve the expanded EMI plan details of the payments, in which the payment method is emi.
Is this page helpful?
1curl -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": 2443},44"created_at": 166739877945},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": 1284},85"created_at": 166739870586}87]88}
Query Parameters
from integerUNIX timestamp, in seconds, from when payments are to be fetched.
to integerUNIX 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 integerNumber of records to be skipped while fetching the payments.
Response Parameters
idstringUnique identifier of the payment.
entitystringIndicates the type of entity.
amountintegerThe payment amount in currency subunits. For example, for an amount of $1.00 enter 100.
statusstringThe status of the payment. Possible values:
createdauthorizedcapturedrefundedfailed
order_idstringOrder id, if provided. Know more about
.descriptionstringDescription of the payment, if any.
internationalbooleanIndicates whether the payment is done via an international card or a domestic one. Possible values:
true: Payment made using international card.false: Payment not made using international card.
refund_statusstringThe refund status of the payment. Possible values:
nullpartialfull
amount_refundedinteger The amount refunded in currency subunits. For example, if amount_refunded = 100, it is equal to $1.00.
capturedbooleanIndicates if the payment is captured. Possible values:
true: Payment has been captured.false: Payment has not been captured.
emailstringCustomer email address used for the payment.
contactstringCustomer contact number used for the payment.
error_codestring Error that occurred during payment. For example, BAD_REQUEST_ERROR.
error_descriptionstring Description of the error that occurred during payment. For example, Payment processing failed because of incorrect OTP.
error_sourcestring The point of failure. For example, customer.
error_stepstring 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_reasonstring The exact error reason. For example, incorrect_otp.
notesjson objectContains user-defined fields, stored for reference purposes.
created_atintegerTimestamp, in UNIX format, on which the payment was created.
card_idstringThe unique identifier of the card used by the customer to make the payment.
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[]=emiClick to copy
Use this endpoint to retrieve the expanded EMI plan details of the payments, in which the payment method is emi.
Is this page helpful?
Query Parameters
from integerUNIX timestamp, in seconds, from when payments are to be fetched.
to integerUNIX 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 integerNumber of records to be skipped while fetching the payments.
Response Parameters
idstringUnique identifier of the payment.
entitystringIndicates the type of entity.
amountintegerThe payment amount in currency subunits. For example, for an amount of $1.00 enter 100.
statusstringThe status of the payment. Possible values:
createdauthorizedcapturedrefundedfailed
order_idstringOrder id, if provided. Know more about
.descriptionstringDescription of the payment, if any.
internationalbooleanIndicates whether the payment is done via an international card or a domestic one. Possible values:
true: Payment made using international card.false: Payment not made using international card.
refund_statusstringThe refund status of the payment. Possible values:
nullpartialfull
amount_refundedinteger The amount refunded in currency subunits. For example, if amount_refunded = 100, it is equal to $1.00.
capturedbooleanIndicates if the payment is captured. Possible values:
true: Payment has been captured.false: Payment has not been captured.
emailstringCustomer email address used for the payment.
contactstringCustomer contact number used for the payment.
error_codestring Error that occurred during payment. For example, BAD_REQUEST_ERROR.
error_descriptionstring Description of the error that occurred during payment. For example, Payment processing failed because of incorrect OTP.
error_sourcestring The point of failure. For example, customer.
error_stepstring 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_reasonstring The exact error reason. For example, incorrect_otp.
notesjson objectContains user-defined fields, stored for reference purposes.
created_atintegerTimestamp, in UNIX format, on which the payment was created.
card_idstringThe unique identifier of the card used by the customer to make the payment.
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
1curl -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": 2443},44"created_at": 166739877945},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": 1284},85"created_at": 166739870586}87]88}