List All Data Providers
curl --request GET \
--url https://api.example.com/v1/providers/import requests
url = "https://api.example.com/v1/providers/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/providers/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/providers/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/providers/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/providers/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/providers/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyCompanies & Data Providers
List All Data Providers
Retrieve a filtered list of data providers by product type.
GET
/
v1
/
providers
/
List All Data Providers
curl --request GET \
--url https://api.example.com/v1/providers/import requests
url = "https://api.example.com/v1/providers/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/providers/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/providers/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/providers/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/providers/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/providers/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyOverview
The endpoint returns a list of data providers filtered by the query parameterproduct_type.
Request
Endpoint
GET https://prod.transcrypts.com/v1/providers/
Authentication
API authentication requires the following headers:| Header | Description |
|---|---|
X-Access-Client-Id | Your Client ID |
X-Access-Secret | Your Access Key |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
product_type | string | No | Filter by product type. Allowed values: employment, income, deposit_switch, pll, insurance, financial_accounts, assets |
Response
Success Response (HTTP 200)
The endpoint returns a JSON array of provider objects.[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "ADP",
"is_supported": true
},
{
"id": "4fb96g75-6828-5673-c4gd-3d074g77bgb7",
"name": "Gusto",
"is_supported": true
}
]
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Data provider unique ID |
name | string | Data provider name |
is_supported | boolean | Support status for the specified product |
Error Responses
| Status Code | Description |
|---|---|
| 401 | Unauthorized - Missing or invalid authentication credentials |
| 403 | Forbidden - Insufficient permissions |