Get a deposit by ID
curl --request GET \
--url https://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}import requests
url = "https://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{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://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}",
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://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}"
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://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}")
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{
"deposit": {
"id": "660e8400-e29b-41d4-a716-446655440001",
"type": "pix",
"amount": "100.50",
"status": "credited",
"coordinates": {
"source-tax-id": "12345678900",
"source-bank-code": "341",
"source-type": "pix",
"source-account-number": "12345-6",
"source-branch-code": "0001",
"target": "<string>"
},
"created-at": "2024-01-15T10:30:00Z",
"processed-at": "2024-01-15T10:30:00Z"
}
}{
"error": {
"type": "<string>",
"message": "<string>",
"code": "<string>"
}
}{
"error": {
"type": "<string>",
"message": "<string>",
"code": "<string>"
}
}{
"error": {
"type": "<string>",
"message": "<string>",
"code": "<string>"
}
}{
"error": {
"type": "<string>",
"message": "<string>",
"code": "<string>"
}
}Deposits
Get Deposit
Retrieves a specific deposit by its ID for the authenticated account. Asset can be ‘brl’, ‘usd’, ‘usdc’ or ‘usdt’
GET
/
api
/
v1
/
accounts
/
{account-id}
/
assets
/
{asset}
/
deposits
/
{id}
Get a deposit by ID
curl --request GET \
--url https://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}import requests
url = "https://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{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://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}",
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://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}"
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://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.crown-brlv.com/api/v1/accounts/{account-id}/assets/{asset}/deposits/{id}")
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{
"deposit": {
"id": "660e8400-e29b-41d4-a716-446655440001",
"type": "pix",
"amount": "100.50",
"status": "credited",
"coordinates": {
"source-tax-id": "12345678900",
"source-bank-code": "341",
"source-type": "pix",
"source-account-number": "12345-6",
"source-branch-code": "0001",
"target": "<string>"
},
"created-at": "2024-01-15T10:30:00Z",
"processed-at": "2024-01-15T10:30:00Z"
}
}{
"error": {
"type": "<string>",
"message": "<string>",
"code": "<string>"
}
}{
"error": {
"type": "<string>",
"message": "<string>",
"code": "<string>"
}
}{
"error": {
"type": "<string>",
"message": "<string>",
"code": "<string>"
}
}{
"error": {
"type": "<string>",
"message": "<string>",
"code": "<string>"
}
}⌘I