Discover/wyzant.com API
live

wyzant.com APIwyzant.com

Search Wyzant tutors by subject, rate, and availability. Get profiles, reviews, expert answers, and trending subjects via a structured JSON API.

Endpoints
6
Updated
3mo ago
Try it
Sort order for results (1=default).
Subject or keyword to search for tutors (e.g. 'math', 'chemistry', 'SAT').
Maximum hourly rate filter in USD.
Minimum hourly rate filter in USD.
Filter for in-person tutors.
Filter for online tutors.
Number of results per page.
IANA time zone name for availability calculations.
Page number (0-indexed).
Filter for instant-bookable tutors.
Filter for background-checked tutors.
api.parse.bot/scraper/c6776c1c-baa9-4a4b-be64-2f59d9e9a959/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c6776c1c-baa9-4a4b-be64-2f59d9e9a959/search_tutors?sort=1&keyword=math&page_size=50&page_number=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Search for tutors by subject keyword with optional filters for rate, availability, and sorting. Returns paginated results.

Input
ParamTypeDescription
sortintegerSort order for results (1=default).
keywordrequiredstringSubject or keyword to search for tutors (e.g. 'math', 'chemistry', 'SAT').
max_rateintegerMaximum hourly rate filter in USD.
min_rateintegerMinimum hourly rate filter in USD.
in_personbooleanFilter for in-person tutors.
is_onlinebooleanFilter for online tutors.
page_sizeintegerNumber of results per page.
time_zonestringIANA time zone name for availability calculations.
page_numberintegerPage number (0-indexed).
instant_bookbooleanFilter for instant-bookable tutors.
background_checkbooleanFilter for background-checked tutors.
Response
{
  "type": "object",
  "fields": {
    "tutors": "array of tutor summary objects with id, name, headline, bio_snippet, hourly_rate, rating, review_count, hours_tutoring, response_time_hours, city, state, is_online, is_instant_bookable, photo_url, subjects",
    "page_size": "integer results per page",
    "page_number": "integer current page number",
    "total_count": "integer total number of matching tutors"
  },
  "sample": {
    "data": {
      "tutors": [
        {
          "id": 75637880,
          "city": "Rolling Meadows",
          "name": "Priti S.",
          "state": null,
          "rating": 4.97932,
          "headline": "Patient & Experienced Math Tutor: K - 12 & SAT / ACT math prep !!!",
          "subjects": [],
          "is_online": null,
          "photo_url": "https://dj1hlxw0wr920.cloudfront.net/userfiles/wyzfiles/4336fdfd-28c6-428c-97b1-c355a8c6f95e.jpg",
          "bio_snippet": "Elementary Math is the first basic subject to succeed in a series of higher-level math classes...",
          "hourly_rate": 150,
          "review_count": 822,
          "hours_tutoring": 4357,
          "is_instant_bookable": null,
          "response_time_hours": 3.92857
        }
      ],
      "page_size": 50,
      "page_number": 0,
      "total_count": 14288
    },
    "status": "success"
  }
}

About the wyzant.com API

The Wyzant API exposes 6 endpoints for retrieving tutor data from Wyzant.com, covering search, profiles, reviews, expert answers, and subject discovery. The search_tutors endpoint accepts a keyword plus filters for hourly rate range, in-person vs. online availability, and time zone, returning paginated summaries with fields like hourly_rate, rating, review_count, and hours_tutoring for each matched tutor.

Tutor Search and Profiles

The search_tutors endpoint is the primary entry point. Pass a keyword (e.g. 'calculus', 'SAT', 'Python') along with optional min_rate and max_rate integers (USD per hour), boolean flags in_person and is_online, and a time_zone string to scope availability. Results are paginated via page_size and include each tutor's id, name, headline, bio_snippet, hourly_rate, rating, review_count, and hours_tutoring. Use the returned id values to call get_tutor_profile, which returns the full bio, tagline, subjects array, photo_url, and an availability object mapping day names to time ranges.

Reviews and Expert Answers

get_tutor_reviews returns paginated reviews (10 per page) for a given tutor, each containing title, body, author, and date. The total_reviews field lets you calculate how many pages exist. get_tutor_answers returns questions the tutor has answered in Wyzant's Ask an Expert community, with question, body, date, topics, and a direct link to the answer — useful for gauging subject-matter depth beyond star ratings.

Subject Discovery

Two endpoints support building search interfaces. get_subject_autocomplete accepts a partial query string (e.g. 'calc') and returns subject name completions. list_trending_subjects takes no inputs and returns popular subjects currently featured on the Wyzant homepage, which can drive UI suggestions or periodic monitoring of which subjects are in demand.

Common use cases
  • Build a tutor comparison tool filtering candidates by min_rate, max_rate, and is_online for a given subject
  • Aggregate rating and review_count from search_tutors to rank tutors by credibility within a subject
  • Display a tutor's weekly availability object to match students with open time slots
  • Analyze get_tutor_answers responses to evaluate a tutor's subject-matter depth before booking
  • Power a subject-search autocomplete widget using get_subject_autocomplete suggestions
  • Monitor list_trending_subjects over time to identify shifts in tutoring demand
  • Collect and store tutor reviews via get_tutor_reviews for sentiment analysis or reputation tracking
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Wyzant have an official public developer API?+
No. Wyzant does not publish an official public developer API or documented REST/GraphQL interface for third-party access to tutor or subject data.
What does `get_tutor_profile` return beyond what `search_tutors` includes?+
search_tutors returns a summary: id, name, headline, bio_snippet, hourly_rate, rating, review_count, and hours_tutoring. get_tutor_profile adds the full bio, tagline, the complete subjects array, photo_url, and a day-by-day availability object showing available time ranges — fields not present in the search results.
Does the API return tutor contact details or messaging capabilities?+
No contact details or messaging data are exposed. The API covers profile data (bio, subjects, availability), ratings, reviews, and expert answers. You can fork the API on Parse and revise it to add an endpoint if Wyzant exposes additional contact-adjacent data on any public page.
How does pagination work for `search_tutors` and `get_tutor_reviews`?+
search_tutors uses page_size and returns page_number and total_count, so you can calculate total pages and iterate. get_tutor_reviews returns 10 reviews per page and includes total_reviews and page_number; pass page_number as an integer (1-indexed) to walk through all pages.
Does the API cover tutor booking, lesson history, or pricing history?+
Not currently. The API covers search, profiles, reviews, subject autocomplete, trending subjects, and expert answers. Booking workflows, completed lesson records, and historical rate changes are not included. You can fork the API on Parse and revise it to add endpoints targeting any public booking or pricing data Wyzant surfaces.
Page content last updated . Spec covers 6 endpoints from wyzant.com.
Related APIs in EducationSee all →
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.
maxpreps.com API
Access high school sports data from MaxPreps. Search for schools, retrieve team rosters and schedules, look up athlete profiles, and browse national or state rankings across all sports.
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.
allaboutcircuits.com API
Access educational electronics content from All About Circuits, including technical articles, circuit diagrams, textbook volumes, and forum discussions organized by category. Search and browse the latest resources, view detailed articles, explore engineering tools, and find answers across their community forums.
illinoisreportcard.com API
Search and analyze comprehensive performance data for Illinois public schools, districts, and the state, including academic achievements in ELA, math, and science, student demographics, teacher and administrator information, school finances, and environmental conditions. Compare schools side-by-side, track growth metrics, and access accountability ratings and school highlights to make informed decisions about education quality.
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.