Discover/angieslist.com API
live

angieslist.com APIangieslist.com

Search Angi service professionals by category and location. Access company profiles, reviews, contact info, ratings, and project photos via 5 endpoints.

Endpoints
5
Updated
10d ago
Try it
Maximum number of results to return.
Search keyword used to match a category ID if category_id is not provided. Supported keywo
Offset for pagination.
US zip code for the search area.
Category ID for the service type. If not provided, inferred from query. Falls back to '127
api.parse.bot/scraper/d528b4c0-1730-4a6e-b30b-3f1d573c8cb2/<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/d528b4c0-1730-4a6e-b30b-3f1d573c8cb2/search_pros?limit=5&query=plumbing&location=10001' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for service professionals by category and location (zip code). Returns a paginated list of companies with name, rating, review count, grade, and profile URL slug.

Input
ParamTypeDescription
limitintegerMaximum number of results to return.
querystringSearch keyword used to match a category ID if category_id is not provided. Supported keywords include: plumbing, electrical, hvac, landscaping, roofing, painting, cleaning, remodeling, handyperson, concrete, windows.
offsetintegerOffset for pagination.
locationstringUS zip code for the search area.
category_idstringCategory ID for the service type. If not provided, inferred from query. Falls back to '1271' (plumbing) if neither query nor category_id resolves to a known category.
Response
{
  "type": "object",
  "fields": {
    "category": "object with id and name of the matched category",
    "totalResults": "integer total number of matching results",
    "serviceProviders": "array of service provider objects with serviceProviderId, name, description, grade, starRating, reviewCount, slug, and businessHighlights",
    "searchLocationInfo": "object with postalCode, cityName, and stateAbbreviation"
  },
  "sample": {
    "data": {
      "category": {
        "id": 107,
        "name": "Plumbing"
      },
      "totalResults": 29,
      "serviceProviders": [
        {
          "name": "DGL Construction & Renovation",
          "slug": "/companylist/us/va/alexandria/dgl-construction-and-renovation-reviews-8680550.htm",
          "grade": "A",
          "starRating": 4.91,
          "reviewCount": 120,
          "serviceProviderId": 20730183,
          "businessHighlights": [
            {
              "name": "EmergencyServices",
              "description": "Emergency Services Offered"
            }
          ]
        }
      ],
      "searchLocationInfo": {
        "cityName": "Ashburn",
        "postalCode": "20147",
        "stateAbbreviation": "VA"
      }
    },
    "status": "success"
  }
}

About the angieslist.com API

The Angi API gives developers access to 5 endpoints covering home service professional data from angieslist.com. Use search_pros to query contractors by category and US zip code, returning names, grades, star ratings, and review counts. Companion endpoints retrieve full company profiles, customer reviews, contact details, and project photo albums for any result returned by a search.

Search and Discovery

The search_pros endpoint accepts a location (US zip code), an optional category_id, or a query keyword that maps to a category. It returns a serviceProviders array where each entry includes serviceProviderId, name, grade, starRating, reviewCount, description, slug, and businessHighlights. The response also contains a category object with the matched category id and name, a totalResults count, and a searchLocationInfo block with postalCode, cityName, and stateAbbreviation. Pagination is controlled through limit and offset. If neither query nor category_id resolves, the endpoint falls back to category ID 1271 (plumbing).

Company Profiles and Reviews

get_company_profile takes a profile_url slug from search_pros results and returns the full profile, including a profile object containing LocalBusiness structured data with name, address, image, an aggregateRating, and a review array. It also surfaces a services list of offered service names, a highlights array of business differentiators, and a contact_sidebar object with address details. get_company_reviews focuses specifically on review data, returning up to 25 recent reviews with reviewBody, reviewRating, datePublished, and author, alongside aggregate rating_value and review_count. get_company_contact_info returns the company name, structured address fields (addressLocality, addressRegion, postalCode, addressCountry), and telephone when available.

Project Photos

get_company_photos retrieves photo albums associated with a company profile. The albums array includes album_id, album_name, image_count, project_year, description, min_cost, and max_cost. The photos array provides individual images with urlSmallImg, urlLargeSquare, title, description, and the parent album_id and album_name. Both arrays return empty when a company has not uploaded photos. The sp_id field identifies the provider, or returns null if not found.

Common use cases
  • Build a contractor comparison tool using starRating, grade, and reviewCount from search_pros results across multiple zip codes.
  • Populate a CRM with verified business contact data using get_company_contact_info to retrieve telephone and structured address fields.
  • Aggregate customer sentiment by pulling reviewBody and reviewRating fields from get_company_reviews across multiple companies in a category.
  • Generate local service provider directories by combining search_pros category searches with profile data from get_company_profile.
  • Analyze project cost ranges in a service category using min_cost and max_cost fields from get_company_photos album data.
  • Monitor a company's aggregate rating and review count over time using rating_value and review_count from get_company_reviews.
  • Enrich lead lists with business highlights and offered services using the highlights and services fields from get_company_profile.
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 Angi have an official developer API?+
Angi does not publish a public developer API or documentation portal. There is no official endpoint set available for third-party developers to register and use.
How many reviews does `get_company_reviews` return, and can I page through all of them?+
get_company_reviews returns up to 25 recent reviews per request, pulled from the structured data on the company's profile page. The review_count field in the aggregate rating may show a higher total than the reviews actually returned. The endpoint does not currently support pagination through older reviews beyond those 25.
Is telephone number always available in `get_company_contact_info`?+
No. The telephone field returns the number as a string when present in the profile's structured data, but returns null when the company has not listed a phone number. Applications consuming this field should handle the null case.
Does the API cover contractor licensing, background check status, or verified badge data?+
Not currently. The API covers search results, profile structured data, customer reviews, contact information, and project photos. Licensing status and background check indicators visible on some Angi profiles are not included in any current response field. You can fork this API on Parse and revise it to add an endpoint that extracts that data from the profile page.
Does `search_pros` work for locations outside the United States?+
The location parameter accepts US zip codes only, and searchLocationInfo returns US city and state fields. Non-US locations are not supported. The API is scoped to the US market that Angi operates in.
Page content last updated . Spec covers 5 endpoints from angieslist.com.
Related APIs in B2b DirectorySee all →
naukri.com API
naukri.com API
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.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
104.com.tw API
Search for jobs across Taiwan's largest job board and retrieve detailed job listings including descriptions, requirements, and company information. Find the right career opportunities by browsing thousands of positions or searching for specific roles that match your skills and interests.
mouser.com API
mouser.com API
mahatenders.gov.in API
Access Maharashtra government tenders from mahatenders.gov.in, browsing them by closing date or by organization with full tender details and pagination support. Find and review procurement opportunities across different government departments in one place.
Angi (Angie's List) API – Service Pro Data · Parse