curl --request GET \
--url https://api.fintoc.com/v2/transfers \
--header 'Authorization: <api-key>'import requests
url = "https://api.fintoc.com/v2/transfers"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.fintoc.com/v2/transfers', 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.fintoc.com/v2/transfers",
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.fintoc.com/v2/transfers"
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.fintoc.com/v2/transfers")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fintoc.com/v2/transfers")
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"[\n {\n \"id\": \"tr_jKaHD105H\",\n \"object\": \"transfer\",\n \"amount\": 2864,\n \"post_date\": \"2020-04-17T00:00:00.000Z\",\n \"transaction_date\": \"2020-04-17T00:00:00.000Z\",\n \"currency\": \"mxn\",\n \"comment\": \"Pago lbel\",\n \"reference_id\": \"130824\",\n \"receipt_url\": \"https://www.banxico.org.mx/cep/\",\n \"tracking_key\": \"s2123423423324334\",\n \"account_number\": {\n \"id\": \"acno_Kasf91034gj1AD\",\n \"object\": \"account_number\",\n \"account_number\": \"738969123456789120\",\n \"created_at\": \"2024-03-01T20:09:42.949787176Z\",\n \"mode\": \"test\",\n \"metadata\": {\n \"id_cliente\": \"12343212\"\n }\n },\n \"counterparty\": {\n \"holder_id\": \"OODC911119JL3\",\n \"holder_name\": \"Carmen Marcela\",\n \"account_number\": \"738969123456789120\",\n \"type\": \"40\",\n \"institution\": {\n \"id\": \"4002\",\n \"name\": \"Blah\",\n \"country\": \"mx\"\n }\n }\n }\n]\n""{}"List Transfers
Use the List Transfers endpoint to see and filter your past inbound and outbound Transfers.
curl --request GET \
--url https://api.fintoc.com/v2/transfers \
--header 'Authorization: <api-key>'import requests
url = "https://api.fintoc.com/v2/transfers"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.fintoc.com/v2/transfers', 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.fintoc.com/v2/transfers",
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.fintoc.com/v2/transfers"
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.fintoc.com/v2/transfers")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fintoc.com/v2/transfers")
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"[\n {\n \"id\": \"tr_jKaHD105H\",\n \"object\": \"transfer\",\n \"amount\": 2864,\n \"post_date\": \"2020-04-17T00:00:00.000Z\",\n \"transaction_date\": \"2020-04-17T00:00:00.000Z\",\n \"currency\": \"mxn\",\n \"comment\": \"Pago lbel\",\n \"reference_id\": \"130824\",\n \"receipt_url\": \"https://www.banxico.org.mx/cep/\",\n \"tracking_key\": \"s2123423423324334\",\n \"account_number\": {\n \"id\": \"acno_Kasf91034gj1AD\",\n \"object\": \"account_number\",\n \"account_number\": \"738969123456789120\",\n \"created_at\": \"2024-03-01T20:09:42.949787176Z\",\n \"mode\": \"test\",\n \"metadata\": {\n \"id_cliente\": \"12343212\"\n }\n },\n \"counterparty\": {\n \"holder_id\": \"OODC911119JL3\",\n \"holder_name\": \"Carmen Marcela\",\n \"account_number\": \"738969123456789120\",\n \"type\": \"40\",\n \"institution\": {\n \"id\": \"4002\",\n \"name\": \"Blah\",\n \"country\": \"mx\"\n }\n }\n }\n]\n""{}"v2 · Base URL https://api.fintoc.com/v2Autorizaciones
Encabezados
Fintoc Secret Key
Parámetros de consulta
Filter transfers by a specific account number.
Filter transfers by a specific account.
Filter transfers by direction.
inbound, outbound Filter transfers by status. Must be an array of statuses to keep.
Date using <<glossary:ISO 8601>>. If present, return only Transfers with date equal or after since.
Date using <<glossary:ISO 8601>>. If present, return only Transfers with date equal or before until.
A cursor to use in pagination. starting_after is a transfer ID that defines your place in the list. For example, if you make a list request and receive 300 transfers, ending with tr_foo, your subsequent call can include starting_after=tr_foo to fetch the next page of the list.
A cursor to use in pagination. ending_before is a transfer ID that defines your place in the list. For example, if you make a list request and receive 300 transfers, starting with tr_bar, your subsequent call can include ending_before=tr_bar to fetch the previous page of the list.
limit on the number of objects to return per page, ranging between 1 and 300.
Respuesta
200
"tr_jKaHD105H"
"transfer"
2864
"2020-04-17T00:00:00.000Z"
"2020-04-17T00:00:00.000Z"
"mxn"
"Pago lbel"
"130824"
"https://www.banxico.org.mx/cep/"
"s2123423423324334"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
¿Esta página le ayudó?