Skip to main content
POST
/
api
/
finra
/
firms
/
search
/finra/firms/search
curl --request POST \
  --url https://api.anysite.io/api/finra/firms/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "state": "PA",
  "city": "Plano"
}
'
[
  {
    "crd": 123,
    "@type": "FinraFirmSummary",
    "firm_name": "<string>",
    "ia_firm_name": "<string>",
    "other_names": [],
    "bc_scope": "<string>",
    "ia_scope": "<string>",
    "bd_sec_number": "<string>",
    "bd_full_sec_number": "<string>",
    "ia_sec_number": "<string>",
    "ia_full_sec_number": "<string>",
    "has_bd_disclosure": true,
    "has_ia_disclosure": true,
    "approved_finra_registration_count": 123,
    "branch_count": 123,
    "office_address": {
      "@type": "FinraAddress",
      "street1": "<string>",
      "street2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "country": "<string>",
      "postal_code": "<string>"
    },
    "mailing_address": {
      "@type": "FinraAddress",
      "street1": "<string>",
      "street2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "country": "<string>",
      "postal_code": "<string>"
    },
    "business_phone": "<string>",
    "finra_last_approval_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Firm name, CRD number or SEC number to search for

Minimum string length: 1
Examples:

"vanguard"

"fisher investments"

count
integer
required

Maximum number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
state
string | null

Filter by office state code

Example:

"PA"

city
string | null

Filter by office city (most reliable when combined with state)

Example:

"Plano"

Response

Successful Response

crd
integer
required
@type
string
default:FinraFirmSummary
firm_name
string | null
ia_firm_name
string | null
other_names
string[]
bc_scope
string | null
ia_scope
string | null
bd_sec_number
string | null
bd_full_sec_number
string | null
ia_sec_number
string | null
ia_full_sec_number
string | null
has_bd_disclosure
boolean | null
has_ia_disclosure
boolean | null
approved_finra_registration_count
integer | null
branch_count
integer | null
office_address
object | null
mailing_address
object | null
business_phone
string | null
finra_last_approval_at
integer | null