API Test Keys

Fetch Banks

GET
/v1/upi/tpap/fundsource_providers?skip=0&count=10&refresh=true

Click to copy

NPCI will maintain the list of all fund source providers connected via a unified interface. A fund source provider is a Bank, Payment Bank, PPI, or any other RBI-regulated entity that is allowed to provide payment (credit/debit) services to individuals and entities. Use this endpoint to fetch banks or fundsource providers. Know more about the

.

Is this page helpful?

Curl

1
curl -X GET 'api.rzp.<bank>.com/v1/upi/tpap/fundsource_providers?skip=0&count=10&refresh=true' \
2
-u [YOUR_KEY_ID]:[YOUR_SECRET] \
3
-H "Content-type: application/json" \
4
-H "x-device-fingerprint: <device_fingerprint>" \
5
-H "x-device-fingerprint-timestamp: 1496918882000" \
6
-H "x-customer-reference: customer-id-from-customer" \

Response

1
{
2
"entity":"collection",
3
"count":1,
4
"items":[
5
{
6
"entity":"upi.fundsource_provider",
7
"name":"HDFC Bank",
8
"id":"psp generated id of fundsource provider",
9
"upi_iin":"600007",
10
"ifsc":"HDFC0000486",
11
"upi_enabled":true,
12
"logo_url":"<bank logo url>",
13
"products":[
14
"nfs",
15
"upi"
16
],
17
"mobile_registration_format":"format1",
18
"upi_versions_supported":[
19
{
20
"version":"1.0",
21
"mandatory":false
22
}
23
]
24
},
25
{
26
"entity":"upi.fundsource_provider",
27
"name":"ICICI Bank",
28
"id":"psp generated id of fundsource provider",
29
"upi_iin":"600008",
30
"ifsc":"ICIC0000486",
31
"upi_enabled":true,
32
"logo_url":"<bank logo url>",
33
"products":[
34
"nfs | upi"
35
],
36
"mobile_registration_format":"format1",
37
"upi_versions_supported":[
38
{
39
"version":"1.0",
40
"mandatory":false
41
}
42
]
43
}
44
]
45
}
Query Parameters
count
integer

Number of entities to fetch. Default is 10. You can use this parameter for pagination in combination with count.

skip
integer

Number of entities to skip. Default is 0. You can use this parameter for pagination in combination with skip.

Response Parameters
entity
string

This refers to the collection of entity. Here, it is collection.

count
integer

Indicates the number of item in the entity type.

items
array

Indicates a list of objects.

Show child parameters (9)

Fetch Banks

GET
/v1/upi/tpap/fundsource_providers?skip=0&count=10&refresh=true

Click to copy

NPCI will maintain the list of all fund source providers connected via a unified interface. A fund source provider is a Bank, Payment Bank, PPI, or any other RBI-regulated entity that is allowed to provide payment (credit/debit) services to individuals and entities. Use this endpoint to fetch banks or fundsource providers. Know more about the

.

Is this page helpful?

Query Parameters
count
integer

Number of entities to fetch. Default is 10. You can use this parameter for pagination in combination with count.

skip
integer

Number of entities to skip. Default is 0. You can use this parameter for pagination in combination with skip.

Response Parameters
entity
string

This refers to the collection of entity. Here, it is collection.

count
integer

Indicates the number of item in the entity type.

items
array

Indicates a list of objects.

Show child parameters (9)

Curl

1
curl -X GET 'api.rzp.<bank>.com/v1/upi/tpap/fundsource_providers?skip=0&count=10&refresh=true' \
2
-u [YOUR_KEY_ID]:[YOUR_SECRET] \
3
-H "Content-type: application/json" \
4
-H "x-device-fingerprint: <device_fingerprint>" \
5
-H "x-device-fingerprint-timestamp: 1496918882000" \
6
-H "x-customer-reference: customer-id-from-customer" \

Response

1
{
2
"entity":"collection",
3
"count":1,
4
"items":[
5
{
6
"entity":"upi.fundsource_provider",
7
"name":"HDFC Bank",
8
"id":"psp generated id of fundsource provider",
9
"upi_iin":"600007",
10
"ifsc":"HDFC0000486",
11
"upi_enabled":true,
12
"logo_url":"<bank logo url>",
13
"products":[
14
"nfs",
15
"upi"
16
],
17
"mobile_registration_format":"format1",
18
"upi_versions_supported":[
19
{
20
"version":"1.0",
21
"mandatory":false
22
}
23
]
24
},
25
{
26
"entity":"upi.fundsource_provider",
27
"name":"ICICI Bank",
28
"id":"psp generated id of fundsource provider",
29
"upi_iin":"600008",
30
"ifsc":"ICIC0000486",
31
"upi_enabled":true,
32
"logo_url":"<bank logo url>",
33
"products":[
34
"nfs | upi"
35
],
36
"mobile_registration_format":"format1",
37
"upi_versions_supported":[
38
{
39
"version":"1.0",
40
"mandatory":false
41
}
42
]
43
}
44
]
45
}