EatRight RDN Directory Scraper - Dietitian Finder avatar

EatRight RDN Directory Scraper - Dietitian Finder

Pricing

Pay per event

Go to Apify Store
EatRight RDN Directory Scraper - Dietitian Finder

EatRight RDN Directory Scraper - Dietitian Finder

Scrape the Academy of Nutrition and Dietetics' Find a Nutrition Expert directory. Extracts contact details, specialties, insurance, languages, and telehealth availability for ~100k registered dietitian nutritionists (RDNs) across the US.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

7 days ago

Last modified

Share

EatRight RDN Directory Scraper

Scrape registered dietitian nutritionist (RDN) profiles from the Academy of Nutrition and Dietetics' Find a Nutrition Expert directory. Pulls roughly 100,000 credentialed US nutrition professionals — contact details, specialties, accepted insurance, languages, and telehealth availability.


EatRight RDN Scraper Features

  • Extracts 18 fields per RDN including credentials, practice name, address, phone, and email
  • Returns specialties and accepted insurance as pipe-separated strings from the detail page
  • Flags telehealth and in-person availability as proper booleans
  • Filter by US state — pass full state names or leave empty for the whole country
  • Walks ~974 US cities for in-person records and 61 state-level queries for telehealth-only records, then deduplicates by RDN ID
  • No proxy required — the eatright.org API serves traffic publicly

Who Uses RDN Directory Data?

  • Healthcare lead-gen platforms — Source verified, credentialed nutrition professionals for marketing tools or referral apps
  • Pharma and supplement marketing — Build outreach lists segmented by specialty (Diabetes, Sports Nutrition, Eating Disorders)
  • Insurance carriers — Verify network adequacy by matching listed RDNs against in-network provider rosters
  • Telehealth platforms — Recruit RDNs who already offer remote visits, filtered by language and accepted plans
  • Academic researchers — Study geographic distribution and specialty composition of the US RDN workforce

How the EatRight RDN Scraper Works

  1. Configure scope — Pick states (or leave empty for all 50), set maxItems, and run.
  2. Listing iteration — Hits the /api/find-a-nutrition-expert JSON endpoint across cities and states. Each page returns up to ~50 RDNs with the listing-level fields already populated.
  3. Profile enrichment — For each unique RDN, fetches the detail page to pick up specialties and other fields the listing API doesn't expose.
  4. Deduplication and export — Deduplicates by RDN ID and writes one record per RDN to your Apify dataset.

Input

Scrape a single state

{
"states": ["California"],
"maxItems": 500
}

Multiple states

{
"states": ["California", "New York", "Texas"],
"maxItems": 2000
}

Nationwide

{
"states": [],
"maxItems": 0
}
FieldTypeDefaultDescription
statesarray[]Full US state names (e.g. California, New York). Empty = all 50 states + DC.
maxItemsinteger10Cap on records. 0 = scrape every available RDN.

EatRight RDN Scraper Output Fields

{
"id": "847291",
"name": "Jane Smith, MS RDN LDN",
"credentials": "MS RDN LDN",
"practice_name": "Smith Nutrition Counseling",
"phone": "(415) 555-0142",
"email": "jane@smithnutrition.com",
"website": "https://smithnutrition.com",
"address": "2200 Larkin St",
"city": "San Francisco",
"state": "CA",
"zip": "94109",
"telehealth": true,
"in_person": true,
"specialties": "Diabetes|Eating Disorders|Sports Nutrition",
"insurance_accepted": "Aetna|Blue Cross Blue Shield|United Healthcare",
"languages": "English|Spanish",
"profile_url": "https://www.eatright.org/find-a-nutrition-expert/profile/847291",
"scraped_at": "2026-05-11T04:18:33.011Z"
}
FieldTypeDescription
idstringUnique RDN identifier from the directory
namestringFull name including credentials (e.g. Jane Smith, MS RDN LDN)
credentialsstringCredentials parsed out of the name (e.g. MS RDN LDN)
practice_namestringPractice or employer name
phonestringPhone number formatted as (XXX) XXX-XXXX
emailstringContact email when listed
websitestringPractice or personal website URL
addressstringStreet address
citystringCity
statestringTwo-letter state code
zipstringZIP code
telehealthbooleanRDN offers telehealth appointments
in_personbooleanRDN offers in-person appointments
specialtiesstringSpecialties, pipe-separated
insurance_acceptedstringAccepted insurance or payment options, pipe-separated
languagesstringLanguages spoken, pipe-separated
profile_urlstringFull URL to the RDN's profile page
scraped_atstringISO timestamp when the record was scraped

FAQ

How do I scrape registered dietitians from EatRight?

EatRight RDN Directory Scraper handles it. Set states (or leave it empty for nationwide), pick maxItems, and run. The scraper walks the Academy's JSON listing API by city and state, then enriches each unique RDN with detail-page fields.

How much does this actor cost to run?

EatRight RDN Directory Scraper uses pay-per-event pricing on the default_2603_basic profile at a 1.0x coefficient. No proxy fees. A 1,000-record run typically costs cents in platform fees.

Can I filter by state or specialty?

EatRight RDN Directory Scraper accepts a states array using full state names. Specialty filtering happens downstream — every record already carries a specialties field with pipe-separated values, so a single SQL filter on LIKE '%Diabetes%' gets you what you need.

Does the data include telehealth-only RDNs?

EatRight RDN Directory Scraper queries both the city-keyed in-person index and the state-keyed telehealth index, then deduplicates. The telehealth and in_person booleans tell you which channels each RDN supports.

Does this actor need proxies?

EatRight RDN Directory Scraper runs proxy-free. The eatright.org API accepts public traffic, and the actor paces requests politely to stay under the radar. Proxies can be added if a specific run needs them, but the default is no.


Need More Features?

Need NPI lookup enrichment, specialty filtering at the API level, or scheduled re-runs to track new RDN registrations? Open an issue or get in touch.

Why Use EatRight RDN Directory Scraper?

  • Real coverage — Iterates across ~974 US cities and 61 state-level queries, then deduplicates by RDN ID. That's how you get the ~100k figure without paying for a static export.
  • Listing plus detail — Specialties and other detail-only fields are filled in per RDN. Most directory scrapers stop at the listing card.
  • Clean booleanstelehealth and in_person are actual booleans, so downstream filtering doesn't require string parsing.