Obter cliente
curl --request GET \
--url https://api.liquerapay.com/customers/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.liquerapay.com/customers/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.liquerapay.com/customers/{id}', 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.liquerapay.com/customers/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.liquerapay.com/customers/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.liquerapay.com/customers/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.liquerapay.com/customers/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "cust_018f3a2b7c4d7c40a1b2",
"email": "joao@exemplo.com",
"createdAt": "2026-04-19T18:32:11.420Z",
"name": "João Silva",
"taxId": "12345678900",
"phone": "+5511999999999",
"updatedAt": "2026-04-19T18:32:11.420Z"
},
"error": null,
"success": true
}{
"error": "UNAUTHORIZED",
"message": "Token inválido ou ausente",
"success": false
}{
"error": "FORBIDDEN",
"message": "Saques estão temporariamente bloqueados para este merchant",
"success": false
}{
"error": "NOT_FOUND",
"message": "Customer não encontrado",
"success": false
}Clientes
Obter Cliente
Retorna todos os detalhes de um cliente pelo seu ID.
GET
/
customers
/
{id}
Obter cliente
curl --request GET \
--url https://api.liquerapay.com/customers/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.liquerapay.com/customers/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.liquerapay.com/customers/{id}', 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.liquerapay.com/customers/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.liquerapay.com/customers/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.liquerapay.com/customers/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.liquerapay.com/customers/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "cust_018f3a2b7c4d7c40a1b2",
"email": "joao@exemplo.com",
"createdAt": "2026-04-19T18:32:11.420Z",
"name": "João Silva",
"taxId": "12345678900",
"phone": "+5511999999999",
"updatedAt": "2026-04-19T18:32:11.420Z"
},
"error": null,
"success": true
}{
"error": "UNAUTHORIZED",
"message": "Token inválido ou ausente",
"success": false
}{
"error": "FORBIDDEN",
"message": "Saques estão temporariamente bloqueados para este merchant",
"success": false
}{
"error": "NOT_FOUND",
"message": "Customer não encontrado",
"success": false
}Retorna todos os detalhes de um cliente pelo ID.
Exemplo de resposta:
{
"data": {
"id": "cust_018f3a2b7c4d7c40a1b2",
"name": "João Silva",
"email": "joao@exemplo.com",
"taxId": "12345678900",
"phone": "+5511999999999",
"createdAt": "2026-04-19T18:32:11.420Z",
"updatedAt": "2026-04-19T18:32:11.420Z"
},
"error": null,
"success": true
}
Customers removidos via
DELETE não são retornados — a API responde 404 NOT_FOUND.Authorizations
Autentique suas requisições enviando o token no header
Authorization: Bearer <token>.
O token pode ser:
- Uma API key com prefixo
liq_, gerada em Dashboard Liquerapay → Configurações → API Keys. - Um JWT retornado pelo login do dashboard (uso interno).
Não há distinção de ambiente — toda chave vale para o único ambiente disponível (produção).
Path Parameters
ID do cliente.
Example:
"cust_018f3a2b7c4d7c40a1b2"
⌘I