List application providers
Returns a paginated list of payment provider configurations for the given application. The application must belong to the authenticated merchant.
curl -X GET "https://api.example.com/api/v1/applications/example_string/providers?page=1&limit=10" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN (JWT)"
import requests
import json
url = "https://api.example.com/api/v1/applications/example_string/providers?page=1&limit=10"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://api.example.com/api/v1/applications/example_string/providers?page=1&limit=10", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://api.example.com/api/v1/applications/example_string/providers?page=1&limit=10", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN (JWT)")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.example.com/api/v1/applications/example_string/providers?page=1&limit=10')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN (JWT)'
response = http.request(request)
puts response.body
{
"items": [
{
"applicationId": "00000000-0000-0000-0000-000000000000",
"provider": "stripe",
"isActive": true,
"paymentMethods": [
"card",
"blik"
],
"keyFingerprint": "rk_live_****x1sf",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z"
}
],
"page": 1,
"limit": 10,
"totalItems": 42,
"totalPages": 5,
"hasPreviousPage": false,
"hasNextPage": true
}
{
"error": "Bad Request",
"message": "The request contains invalid parameters or malformed data",
"code": 400,
"details": [
{
"field": "email",
"message": "Invalid email format"
}
]
}
{
"error": "Unauthorized",
"message": "Authentication required. Please provide a valid API token",
"code": 401
}
{
"error": "Forbidden",
"message": "You don't have permission to access this resource",
"code": 403
}
{
"error": "Not Found",
"message": "The requested resource was not found",
"code": 404
}
{
"error": "Error",
"message": "Service temporarily unavailable.",
"code": 502
}
{
"error": "Error",
"message": "Request timed out.",
"code": 504
}
GET
/api/v1/applications/{applicationId}/providersGET
Base URLstring
Target server for requests. Edit to use your own host.
Bearer Token (JWT)
Bearer Tokenstring
RequiredBearer token (JWT) - just enter the token, "Bearer" prefix will be added automatically
path
applicationIdstring
RequiredID of the application whose provider configurations to list.
query
pagenumber
Page number (1-based).
Min: 1
query
limitnumber
Page size (items per page).
Min: 1 • Max: 100
Request Preview
Response
Response will appear here after sending the request
Authentication
header
Authorizationstring
RequiredBearer token (JWT). Authentication token required.
Path Parameters
applicationIdstring
RequiredID of the application whose provider configurations to list.
Query Parameters
Responses
itemsarray
RequiredItems in the current page.
pagenumber
RequiredCurrent page number (1-based).
limitnumber
RequiredPage size (items per page).
totalItemsnumber
RequiredTotal number of items.
totalPagesnumber
RequiredTotal number of pages.
hasPreviousPageboolean
RequiredWhether there is a previous page.
hasNextPageboolean
RequiredWhether there is a next page.
Was this page helpful?