Skip to main content
GET
/
v1
/
signer
Retrieve signers
curl --request GET \
  --url https://api.example.com/v1/signer
import requests

url = "https://api.example.com/v1/signer"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.example.com/v1/signer', 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/signer",
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/signer"

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/signer")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v1/signer")

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_body
{
  "entities": [
    {
      "signer_id": "01958221-232c-7884-9c17-d76170087d06",
      "id": "01958221-232c-7884-9c17-d76170087d06",
      "handle": "wgC4AdDJGDPoGrdD2e4MsS28W3SAR3Uo9h",
      "keeper": [
        {
          "public": "0406abe8a361c5d9cc6f8d2ae387ff2451622978c2a41f68ed0523652c06ac33c03b0841ec3c55bc33be831b2bc5a1aaf46b615554cdf809300b2d509f8258d4da",
          "scheme": "ecdsa-ed25519",
          "secret": "0563062c13538fc6fb28bd73a2ef70278c2bdc5037a5a828b69899f9b29eb5f0"
        }
      ],
      "labels": {
        "type": "PERSON",
        "status": "ACTIVE",
        "created": "2025-03-18T15:12:55.993-05:00",
        "updated": "2025-03-18T15:12:55.993-05:00",
        "createdBy": "mSJkneiASd",
        "aliasType": "ALPHANUM",
        "aliasValue": "@jorge",
        "proprietary": "CC",
        "identification": "1010101010",
        "firstName": "Jorge",
        "lastName": "Diaz",
        "bankId": "900123456",
        "bankAccountType": "SVGS",
        "bankAccountNumber": "4123456789",
        "routerReference": "$bancorojo",
        "targetSpbviCode": "TFY",
        "consented": "2025-03-18T20:38:07-05:00",
        "received": "2025-03-13T20:38:07.123-05:00",
        "dispatched": "2025-03-13T20:38:10.123-05:00"
      }
    },
    {
      "signer_id": "0195b009-a139-7ff2-adac-15e3c3ecfc88",
      "id": "0195b009-a139-7ff2-adac-15e3c3ecfc88",
      "handle": "wYe6h63CNqoLxJet5jP1WWLhGi8D11ZGij",
      "keeper": [
        {
          "public": "7ef44ee7ff1f4527ef44ee7ff1f4527ef44ee7ff1f4527ef44ee7ff1f4527ef4",
          "scheme": "ecdsa-ed25519",
          "secret": "046d541aec939b4748943e49cc1117a70966a6fc87345e6052a54f1e69ea48d5"
        }
      ],
      "labels": {
        "type": "PERSON",
        "status": "INACTIVE",
        "created": "2025-03-19T15:12:55.993-05:00",
        "updated": "2025-03-19T15:12:55.993-05:00",
        "createdBy": "mSJkneiASd",
        "aliasType": "ALPHANUM",
        "aliasValue": "@jorge",
        "proprietary": "CC",
        "identification": "1010101010",
        "firstName": "Jorge",
        "lastName": "Diaz",
        "bankId": "900123456",
        "bankAccountType": "SVGS",
        "bankAccountNumber": "4123456789",
        "routerReference": "$bancorojo",
        "targetSpbviCode": "TFY",
        "consented": "2025-03-19T20:38:07-05:00",
        "received": "2025-03-13T20:38:07.123-05:00",
        "dispatched": "2025-03-13T20:38:10.123-05:00"
      }
    }
  ],
  "pagination": {
    "pageNum": 0,
    "pageSize": 50
  },
  "error": {
    "code": 0,
    "message": "Success"
  }
}
{
"error": {
"code": 123,
"message": "<string>",
"requestId": "<string>"
}
}
{
"error": {
"code": 123,
"message": "<string>",
"requestId": "<string>"
}
}

Query Parameters

pagenum
integer
pagesize
integer
handle
string
labels.aliasType
enum<string>
Available options:
ALPHANUM,
NRIC,
PHONE,
EMAIL,
MERCHANT
labels.aliasValue
string

Response

Signer details retrieved successfully

entities
object[]
pagination
object
error
object