List Links
curl --request GET \
--url https://api.fintoc.com/v1/links/import requests
url = "https://api.fintoc.com/v1/links/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.fintoc.com/v1/links/', 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/v1/links/",
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.fintoc.com/v1/links/"
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.fintoc.com/v1/links/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fintoc.com/v1/links/")
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"[\n {\n \"id\": \"link_BQ62Rk5Vi4LNn5j4\",\n \"object\": \"link\",\n \"username\": \"210337474\",\n \"holder_type\": \"business\",\n \"created_at\": \"2020-05-15T18:30:20.213Z\",\n \"accounts\": null,\n \"institution\": {\n \"id\": \"cl_banco_santander\",\n \"name\": \"Banco Santander\",\n \"country\": \"cl\"\n },\n \"link_token\": null,\n \"active\": true,\n \"status\": \"active\"\n },\n {\n \"id\": \"link_NYa61GeEiwGOmvQe\",\n \"object\": \"link\",\n \"username\": \"210337474\",\n \"holder_type\": \"business\",\n \"created_at\": \"2020-05-15T18:22:07.692Z\",\n \"accounts\": null,\n \"institution\": {\n \"id\": \"cl_banco_de_chile\",\n \"name\": \"Banco de Chile\",\n \"country\": \"cl\"\n },\n \"link_token\": null,\n \"active\": true,\n \"status\": \"login_required\"\n },\n]"Links
List Links
List every Link you have ever created. The listed Links are returned ordered, with the latest created Link being the first one.
GET
/
links
/
List Links
curl --request GET \
--url https://api.fintoc.com/v1/links/import requests
url = "https://api.fintoc.com/v1/links/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.fintoc.com/v1/links/', 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/v1/links/",
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.fintoc.com/v1/links/"
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.fintoc.com/v1/links/")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fintoc.com/v1/links/")
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"[\n {\n \"id\": \"link_BQ62Rk5Vi4LNn5j4\",\n \"object\": \"link\",\n \"username\": \"210337474\",\n \"holder_type\": \"business\",\n \"created_at\": \"2020-05-15T18:30:20.213Z\",\n \"accounts\": null,\n \"institution\": {\n \"id\": \"cl_banco_santander\",\n \"name\": \"Banco Santander\",\n \"country\": \"cl\"\n },\n \"link_token\": null,\n \"active\": true,\n \"status\": \"active\"\n },\n {\n \"id\": \"link_NYa61GeEiwGOmvQe\",\n \"object\": \"link\",\n \"username\": \"210337474\",\n \"holder_type\": \"business\",\n \"created_at\": \"2020-05-15T18:22:07.692Z\",\n \"accounts\": null,\n \"institution\": {\n \"id\": \"cl_banco_de_chile\",\n \"name\": \"Banco de Chile\",\n \"country\": \"cl\"\n },\n \"link_token\": null,\n \"active\": true,\n \"status\": \"login_required\"\n },\n]"v1 · Base URL https://api.fintoc.com/v1Encabezados
Fintoc Secret Key
Parámetros de consulta
A string that contains the status of the Links you want in the response. Take a look at the Link Object [blocked] to learn what values this parameter can have.
Respuesta
200 - application/json
200
¿Esta página le ayudó?
⌘I