Psychology Today Therapist avatar

Psychology Today Therapist

Pricing

from $9.99 / 1,000 results

Go to Apify Store
Psychology Today Therapist

Psychology Today Therapist

Psychology Today Therapist Scraper is an Apify Actor that extracts therapist listings from the Psychology Today directory for any U.S. city and state. It can return individual profiles with contact details or aggregate counts by ZIP code, providing structured data for research and analysis.

Pricing

from $9.99 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Psychology Today Therapist Scraper

An Apify actor that scrapes the Psychology Today therapist directory for a given US city and state.

Modes

  • profiles — one record per therapist card: name, phone, profile URL, ZIP, and the full location line.
  • count — aggregates the results into a count of therapists per ZIP code.

Output fields

profiles mode

FieldDescription
nameTherapist / practice name
phonePhone number (if shown)
profileUrlLink to the therapist's Psychology Today profile
zipCodeZIP parsed from the location line
locationFull location text
city, stateEcho of the search inputs

count mode

FieldDescription
zipCodeZIP code
therapistCountNumber of therapists found in that ZIP
city, stateEcho of the search inputs

Input

FieldTypeDefaultNotes
citystringRequired. e.g. Austin
statestringRequired. 2-letter, e.g. TX
modestringprofilesprofiles or count
maxPagesinteger3Result pages to walk
maxRecordsinteger200Cap for profiles mode (ignored in count)
enginestringcurl_cffiauto / curl_cffi / requests
requestDelaySecondsinteger2Politeness delay between requests
proxyConfigurationobjectApify ProxyUse RESIDENTIAL — site is Cloudflare-protected

Example input

{
"city": "Austin",
"state": "TX",
"mode": "profiles",
"maxPages": 3,
"maxRecords": 150,
"engine": "curl_cffi",
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Example output (profiles)

{
"name": "Jane Doe, LCSW",
"phone": "(512) 555-0100",
"profileUrl": "https://www.psychologytoday.com/us/therapists/jane-doe-austin-tx/123456",
"zipCode": "78701",
"location": "Austin, TX 78701",
"city": "Austin",
"state": "TX"
}