Skip to main content
GET
/
v1
/
stock
/
bank-branch
Bank Branch
curl --request GET \
  --url https://api.aries.com/v1/stock/bank-branch \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "branchId": "201601",
      "address": "1910 E 95th St",
      "state": "IL",
      "zipCode": "60617",
      "date": "2000-02-28"
    },
    {
      "branchId": "359157",
      "address": "401 W 49th St",
      "state": "FL",
      "zipCode": "33012",
      "date": "2000-02-01"
    }
  ],
  "symbol": "JPM"
}

Query parameters

ParameterTypeRequiredDescription
symbolstringYesStock ticker symbol (e.g. JPM).

Response

Success returns 200 OK with a JSON object containing a data array of branch entries (e.g. branchId, address, state, zipCode, date), and symbol. Errors: 400 when symbol is missing, 401 unauthorized, 404 when no data found, 500 server error.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

symbol
string
required

Stock ticker symbol

Response

Successful response

data
object[]
symbol
string