List Accounts
curl --request GET \
--url https://api.waycore.com/v1/accounts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.waycore.com/v1/accounts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.waycore.com/v1/accounts', 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.waycore.com/v1/accounts",
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: Bearer <token>"
],
]);
$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.waycore.com/v1/accounts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.waycore.com/v1/accounts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.waycore.com/v1/accounts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connectionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "checking",
"currency": "<string>",
"name": "<string>",
"status": "open",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"officialName": "<string>",
"maskedNumber": "<string>",
"accountNumber": "<string>",
"routingNumber": "<string>",
"swiftBic": "<string>",
"paymentIdentifiers": [
{
"countryCode": "US",
"currency": "USD",
"details": {
"accountNumber": "000123456789",
"routingNumber": "011000015"
},
"scheme": "us_ach"
}
],
"currentBalance": "<string>",
"availableBalance": "<string>",
"balanceAsOf": "2023-11-07T05:31:56Z",
"metadata": {}
}
],
"pagination": {
"hasMore": true,
"nextCursor": "<string>"
},
"meta": {
"requestId": "<string>"
}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}accounts
List Accounts
Canonical account browse endpoint for API token integrations. Returns only accounts visible to the authenticated API token on Waycore’s public API surface.
GET
/
v1
/
accounts
List Accounts
curl --request GET \
--url https://api.waycore.com/v1/accounts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.waycore.com/v1/accounts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.waycore.com/v1/accounts', 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.waycore.com/v1/accounts",
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: Bearer <token>"
],
]);
$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.waycore.com/v1/accounts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.waycore.com/v1/accounts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.waycore.com/v1/accounts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connectionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "checking",
"currency": "<string>",
"name": "<string>",
"status": "open",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"officialName": "<string>",
"maskedNumber": "<string>",
"accountNumber": "<string>",
"routingNumber": "<string>",
"swiftBic": "<string>",
"paymentIdentifiers": [
{
"countryCode": "US",
"currency": "USD",
"details": {
"accountNumber": "000123456789",
"routingNumber": "011000015"
},
"scheme": "us_ach"
}
],
"currentBalance": "<string>",
"availableBalance": "<string>",
"balanceAsOf": "2023-11-07T05:31:56Z",
"metadata": {}
}
],
"pagination": {
"hasMore": true,
"nextCursor": "<string>"
},
"meta": {
"requestId": "<string>"
}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"type": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}Authorizations
Opaque API key passed as Authorization: Bearer <key>. Keys are organization-bound, environment-bound (live or test), scope-carrying, and expiring. Create and manage keys via the console.
Query Parameters
Pagination cursor from a previous response.
Maximum number of items to return.
Required range:
1 <= x <= 500Comma-separated sparse fieldset. The server always includes required identifiers.
Filter by parent connection identifier.
Filter by entity identifier.
Filter by canonical account type.
Available options:
checking, savings, moneyMarket, creditCard, loan, investment, wallet, other, unknown Filter by account currency.
Pattern:
^[A-Z0-9]{3,12}$Filter by account status.
Available options:
open, closed, unknown