Skip to main content
POST
/
api
/
finra
/
individuals
/finra/individuals
curl --request POST \
  --url https://api.anysite.io/api/finra/individuals \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "crd": "<string>",
  "timeout": 300,
  "include_previous": true
}
'
[
  {
    "crd": 123,
    "@type": "FinraIndividual",
    "first_name": "<string>",
    "middle_name": "<string>",
    "last_name": "<string>",
    "name_suffix": "<string>",
    "other_names": [],
    "bc_scope": "<string>",
    "ia_scope": "<string>",
    "industry_entry_at": 123,
    "is_permanently_barred": true,
    "sanctions": [],
    "current_employments": [],
    "previous_employments": [],
    "has_bc_disclosure": true,
    "has_ia_disclosure": true,
    "disclosures": [],
    "exams": [],
    "state_exam_count": 123,
    "principal_exam_count": 123,
    "product_exam_count": 123,
    "approved_sro_registration_count": 123,
    "approved_finra_registration_count": 123,
    "approved_state_registration_count": 123,
    "approved_ia_state_registration_count": 123,
    "registered_states": [],
    "registered_sros": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
crd
string
required

Central Registration Depository (CRD) number of the broker or investment adviser

Examples:

"316687"

"6808119"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
include_previous
boolean
default:true

Include previous employments and registration history

Response

Successful Response

crd
integer
required
@type
string
default:FinraIndividual
first_name
string | null
middle_name
string | null
last_name
string | null
name_suffix
string | null
other_names
string[]
bc_scope
string | null
ia_scope
string | null
industry_entry_at
integer | null
is_permanently_barred
boolean | null
sanctions
object[]
current_employments
object[]
previous_employments
object[]
has_bc_disclosure
boolean | null
has_ia_disclosure
boolean | null
disclosures
object[]
exams
object[]
state_exam_count
integer | null
principal_exam_count
integer | null
product_exam_count
integer | null
approved_sro_registration_count
integer | null
approved_finra_registration_count
integer | null
approved_state_registration_count
integer | null
approved_ia_state_registration_count
integer | null
registered_states
object[]
registered_sros
object[]