Afterbanks API
afterbanks · Company
La estandarización de la conexión con cualquier banco en tiempo real.
Authentication
Sample Requests
Obtén una lista completa de los bancos soportados, así como los nombres de los campos necesarios para dibujar un formulario de login similar al oritinal del banco.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/forms?country_code=example"
import requests
params = {
"country_code": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/forms",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/forms');
url.searchParams.set('country_code', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/forms")
q := baseURL.Query()
q.Set("country_code", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/forms")
uri.query = URI.encode_www_form({
"country_code" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/forms?" . http_build_query([
"country_code" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Devuelve información sobre mi licencia y uso de llamadas
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/me?servicekey=example"
import requests
params = {
"servicekey": "example"
}
response = requests.post(
"https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/me",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/me');
url.searchParams.set('servicekey', 'example');
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/me")
q := baseURL.Query()
q.Set("servicekey", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/me")
uri.query = URI.encode_www_form({
"servicekey" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/me?" . http_build_query([
"servicekey" => "example"
]);
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Este endpoint devuelve el listado de productos y los movimientos para cada uno de los productos desde la fecha solicidata hasta el día actual. Existe un sandbox donde probar llamadas: https://www.afterbanks.com/sandbox/
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/serviceV3?pass=example&user=example&pass2=example&service=example&products=example&startdate=example&servicekey=example&documentType=1"
import requests
params = {
"pass": "example",
"user": "example",
"pass2": "example",
"service": "example",
"products": "example",
"startdate": "example",
"servicekey": "example",
"documentType": "1"
}
response = requests.post(
"https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/serviceV3",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/serviceV3');
url.searchParams.set('pass', 'example');
url.searchParams.set('user', 'example');
url.searchParams.set('pass2', 'example');
url.searchParams.set('service', 'example');
url.searchParams.set('products', 'example');
url.searchParams.set('startdate', 'example');
url.searchParams.set('servicekey', 'example');
url.searchParams.set('documentType', '1');
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/serviceV3")
q := baseURL.Query()
q.Set("pass", "example")
q.Set("user", "example")
q.Set("pass2", "example")
q.Set("service", "example")
q.Set("products", "example")
q.Set("startdate", "example")
q.Set("servicekey", "example")
q.Set("documentType", "1")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/serviceV3")
uri.query = URI.encode_www_form({
"pass" => "example",
"user" => "example",
"pass2" => "example",
"service" => "example",
"products" => "example",
"startdate" => "example",
"servicekey" => "example",
"documentType" => "1"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/serviceV3?" . http_build_query([
"pass" => "example",
"user" => "example",
"pass2" => "example",
"service" => "example",
"products" => "example",
"startdate" => "example",
"servicekey" => "example",
"documentType" => "1"
]);
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Afterbanks API?
Afterbanks API is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Afterbanks API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide