cURL
curl --request GET \
--url https://api.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos \
--header 'Authorization: <api-key>'import requests
url = "https://api.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos', 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.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos",
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: <api-key>"
],
]);
$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.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
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.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"sucesso": true,
"mensagem": "<string>",
"codigoRetorno": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dadosTitulo": {
"numLinhaDigtvl": "<string>",
"numCodBarras": "<string>",
"nomFantsBenfcrioOr": "<string>",
"dtVencTit": "2023-11-07T05:31:56Z",
"cnpjCpfBenfcrioOr": "<string>",
"vlrTit": 123,
"tpPessoaBenfcrioOr": "<string>",
"codPartDestinatario": "<string>",
"numIdentcTit": "<string>",
"numRefAtlCadTit": "<string>",
"indrPgtoParcl": "<string>",
"tpAutcRecbtVlrDivgte": "<string>",
"codEspTit": 123,
"numCtrlPart": "<string>",
"ispbPartRecbdrPrincipal": "<string>",
"ispbPartRecbdrAdmtd": "<string>",
"numCtrlDDA": "<string>",
"numSeqAtlzCadTit": "<string>",
"dtHrSitTit": "2023-11-07T05:31:56Z",
"ispbPartDestinatario": "<string>",
"nomRzSocBenfcrioOr": "<string>",
"tpPessoaPagdr": "<string>",
"cnpjCpfPagdr": "<string>",
"nomRzSocPagdr": "<string>",
"codMoedaCNAB": "<string>",
"dtLimPgtoTit": "2023-11-07T05:31:56Z",
"indrBloqPgto": "<string>",
"vlrAbattTit": 123,
"tpModlCalc": "<string>",
"sitTitPgto": "<string>",
"dtHrDDA": "2023-11-07T05:31:56Z",
"dtMovto": "2023-11-07T05:31:56Z",
"tpVlr_PercMinTit": "<string>",
"vlr_PercMinTit": 123,
"tpVlr_PercMaxTit": "<string>",
"vlr_PercMaxTit": 123,
"totalBaixasParciais": 123,
"tpIdentcSacdrAvalst": "<string>",
"identcSacdrAvalst": "<string>",
"nom_RzSocSacdrAvalst": "<string>",
"emissor": "<string>",
"result": 123
},
"juros": {
"codJurosTit": "<string>",
"dtJurosTit": "2023-11-07T05:31:56Z",
"vlrPercJurosTit": 123,
"total": 123
},
"multa": {
"codMultaTit": "<string>",
"dtMultaTit": "2023-11-07T05:31:56Z",
"vlrPercMultaTit": 123,
"total": 123
},
"descontos": [
{
"codDesctTit": "<string>",
"dtDesctTit": "2023-11-07T05:31:56Z",
"vlrPercDesctTit": 123,
"total": 123
}
],
"validacoes": [
{
"mensagem": "<string>"
}
],
"sucessoRetornoCM": true,
"vlrTitTotal": 123
}{
"sucesso": true,
"mensagem": "<string>"
}{
"sucesso": true,
"mensagem": "<string>"
}Bills
58 - Bills of Other Banks
Scopes:
api.ext api.boletocURL
curl --request GET \
--url https://api.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos \
--header 'Authorization: <api-key>'import requests
url = "https://api.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos', 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.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos",
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: <api-key>"
],
]);
$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.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
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.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ext.dbs.moneyp.dev.br/api/BoletoOutrosBancos")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"sucesso": true,
"mensagem": "<string>",
"codigoRetorno": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dadosTitulo": {
"numLinhaDigtvl": "<string>",
"numCodBarras": "<string>",
"nomFantsBenfcrioOr": "<string>",
"dtVencTit": "2023-11-07T05:31:56Z",
"cnpjCpfBenfcrioOr": "<string>",
"vlrTit": 123,
"tpPessoaBenfcrioOr": "<string>",
"codPartDestinatario": "<string>",
"numIdentcTit": "<string>",
"numRefAtlCadTit": "<string>",
"indrPgtoParcl": "<string>",
"tpAutcRecbtVlrDivgte": "<string>",
"codEspTit": 123,
"numCtrlPart": "<string>",
"ispbPartRecbdrPrincipal": "<string>",
"ispbPartRecbdrAdmtd": "<string>",
"numCtrlDDA": "<string>",
"numSeqAtlzCadTit": "<string>",
"dtHrSitTit": "2023-11-07T05:31:56Z",
"ispbPartDestinatario": "<string>",
"nomRzSocBenfcrioOr": "<string>",
"tpPessoaPagdr": "<string>",
"cnpjCpfPagdr": "<string>",
"nomRzSocPagdr": "<string>",
"codMoedaCNAB": "<string>",
"dtLimPgtoTit": "2023-11-07T05:31:56Z",
"indrBloqPgto": "<string>",
"vlrAbattTit": 123,
"tpModlCalc": "<string>",
"sitTitPgto": "<string>",
"dtHrDDA": "2023-11-07T05:31:56Z",
"dtMovto": "2023-11-07T05:31:56Z",
"tpVlr_PercMinTit": "<string>",
"vlr_PercMinTit": 123,
"tpVlr_PercMaxTit": "<string>",
"vlr_PercMaxTit": 123,
"totalBaixasParciais": 123,
"tpIdentcSacdrAvalst": "<string>",
"identcSacdrAvalst": "<string>",
"nom_RzSocSacdrAvalst": "<string>",
"emissor": "<string>",
"result": 123
},
"juros": {
"codJurosTit": "<string>",
"dtJurosTit": "2023-11-07T05:31:56Z",
"vlrPercJurosTit": 123,
"total": 123
},
"multa": {
"codMultaTit": "<string>",
"dtMultaTit": "2023-11-07T05:31:56Z",
"vlrPercMultaTit": 123,
"total": 123
},
"descontos": [
{
"codDesctTit": "<string>",
"dtDesctTit": "2023-11-07T05:31:56Z",
"vlrPercDesctTit": 123,
"total": 123
}
],
"validacoes": [
{
"mensagem": "<string>"
}
],
"sucessoRetornoCM": true,
"vlrTitTotal": 123
}{
"sucesso": true,
"mensagem": "<string>"
}{
"sucesso": true,
"mensagem": "<string>"
}Through this endpoint, the partner can consult an already registered Assignor number.
Authorizations
Copie 'Bearer ' + token
Query Parameters
Sequência numérica digitável presente no boleto bancário.
Sequência numérica que corresponde ao código de barras impresso no boleto bancário.
Response
Success
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Available options:
1, 2 Was this page helpful?
⌘I

