Skip to main content
GET
/
v1
/
stocks
/
screener
/
basic-info
/
country
Get Stock Basic Info Screener by Country
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/stocks/screener/basic-info/country \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "symbol": "<string>",
      "type": "<string>",
      "value": "<string>"
    }
  ],
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

country
enum<string>
required

Country code (ISO 3166-1 alpha-2)

Available options:
AE,
AR,
AU,
BE,
BM,
BR,
BS,
CA,
CH,
CI,
CL,
CN,
CO,
CR,
CY,
DE,
DK,
ES,
FI,
FR,
GB,
GG,
GI,
GR,
HK,
ID,
IE,
IL,
IN,
IS,
IT,
JE,
JO,
JP,
KR,
KY,
KZ,
LU,
MC,
MO,
MX,
MY,
NL,
NO,
PA,
PE,
PH,
SE,
SG,
TH,
TR,
TW,
US,
UY,
VG,
VN,
ZA
symbol_type
enum<string>

Asset type filter. Valid values: stock (non-ETF), etf. Optional, defaults to stock.

Available options:
stock,
etf

Response

Successfully retrieved stock basic info by country

data
object[]
error
object
pagination
any
request_id
string
success
boolean