Skip to main content
POST
/
api
/
iapd
/
advisers
/
search
/iapd/advisers/search
curl --request POST \
  --url https://api.anysite.io/api/iapd/advisers/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "firm": "vanguard",
  "state": "NY"
}
'
[
  {
    "crd": 123,
    "@type": "IapdAdviserSummary",
    "first_name": "<string>",
    "middle_name": "<string>",
    "last_name": "<string>",
    "name_suffix": "<string>",
    "other_names": [],
    "bc_scope": "<string>",
    "ia_scope": "<string>",
    "has_ia_disclosure": true,
    "is_permanently_barred": true,
    "approved_finra_registration_count": 123,
    "employment_count": 123,
    "industry_days": 123,
    "industry_entry_at": 123,
    "current_employments": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Investment adviser representative name or CRD number to search for

Minimum string length: 1
Examples:

"john smith"

"6808119"

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
firm
string | null

Filter by employer firm name, CRD number or SEC number

Example:

"vanguard"

state
string | null

Filter by branch state code

Example:

"NY"

Response

Successful Response

crd
integer
required
@type
string
default:IapdAdviserSummary
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
has_ia_disclosure
boolean | null
is_permanently_barred
boolean | null
approved_finra_registration_count
integer | null
employment_count
integer | null
industry_days
integer | null
industry_entry_at
integer | null
current_employments
object[]