Discover/auctioneers.org API
live

auctioneers.org APIauctioneers.org

Search and retrieve professional auctioneer profiles from the National Auction Association directory. Filter by location, specialty, and NAA designation.

Endpoints
4
Updated
3mo ago
Try it
Filter by zip/postal code.
Filter by city name.
Page number (0-indexed).
Results per page.
Search by keyword.
Filter by state/province abbreviation (e.g. 'TX', 'CA').
Specialty category slug from list_auctioneer_categories (e.g. 'antiques-and-collectibles',
NAA designation slug from list_naa_designations (e.g. 'cai', 'bas', 'aare').
Filter by state licensed in (slug).
api.parse.bot/scraper/9907bc4c-92fb-4f0f-b852-de27eef0b10e/<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/9907bc4c-92fb-4f0f-b852-de27eef0b10e/search_auctioneers?page=0&limit=3&query=antiques&state=TX' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for auctioneers in the NAA directory with optional filters for location, specialty category, and designation. Returns paginated results.

Input
ParamTypeDescription
zipstringFilter by zip/postal code.
citystringFilter by city name.
pageintegerPage number (0-indexed).
limitintegerResults per page.
querystringSearch by keyword.
statestringFilter by state/province abbreviation (e.g. 'TX', 'CA').
categorystringSpecialty category slug from list_auctioneer_categories (e.g. 'antiques-and-collectibles', 'real-estate-land').
designationstringNAA designation slug from list_naa_designations (e.g. 'cai', 'bas', 'aare').
state_licensedstringFilter by state licensed in (slug).
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "limit": "integer results per page",
    "total": "integer total number of matching results",
    "members": "array of auctioneer objects with id, name, company, title, email, phone, website, location, social, member_type, profile_url, and slug"
  },
  "sample": {
    "data": {
      "page": 0,
      "limit": 3,
      "total": 141,
      "members": [
        {
          "id": 3824795,
          "name": "John Doe",
          "slug": "kate-phillips",
          "email": "[email protected]",
          "phone": "+1 (555) 012-3456",
          "title": "",
          "social": {
            "twitter": null,
            "facebook": "https://facebook.com/kpauctiongroup",
            "linkedin": null,
            "instagram": "Auctionkate"
          },
          "company": "KP Auction Group",
          "website": "https://kpauctiongroup.com/",
          "location": {
            "zip": "62704",
            "city": "Springfield",
            "state": "IL",
            "address": "123 Main St",
            "country": "United States"
          },
          "member_type": "Regular Member",
          "profile_url": "https://www.auctioneers.org/find-an-auctioneer/kate-phillips"
        }
      ]
    },
    "status": "success"
  }
}

About the auctioneers.org API

This API exposes 4 endpoints for querying the National Auction Association (NAA) member directory, returning contact details, bios, specialty categories, and professional designations for licensed auctioneers across the US and Canada. The search_auctioneers endpoint supports filtering by state, zip code, city, keyword, specialty category, and NAA designation, with paginated results including name, company, email, phone, website, and social profile links per member.

Search and Filter NAA Members

The search_auctioneers endpoint accepts up to eight optional parameters — zip, city, state, query, category, designation, page, and limit — and returns a paginated list of matching auctioneer objects. Each result includes id, name, company, title, email, phone, website, location, social, member_type, and profile_url. Pagination is 0-indexed via the page parameter. To identify which category or designation slug values are valid inputs, call list_auctioneer_categories and list_naa_designations first.

Category and Designation Reference Endpoints

list_auctioneer_categories returns an array of specialty categories — such as antiques-and-collectibles or real-estate-land — each with a Name (display label) and URL (the slug to pass as category in search). list_naa_designations returns NAA credentials like CAI, BAS, and AARE with a name and value field, where value is the slug for the designation filter. These two reference endpoints take no inputs and should be used to populate filter UI or validate query parameters before searching.

Individual Auctioneer Profiles

get_auctioneer_profile accepts a slug from search results and returns the full profile: bio text, name, title, company, details (address, phone, email, website), social (Facebook, Twitter, LinkedIn, Instagram URLs where available), dates (member_since and original_join_date), and profile_url. This endpoint is useful when you need contact information and background detail beyond what the search listing provides.

Common use cases
  • Build a geographic auctioneer finder using the state and zip filters in search_auctioneers
  • Generate a curated list of estate or real-estate auctioneers by passing the appropriate category slug
  • Filter for credentialed members only by supplying a designation value such as cai or bas
  • Populate a CRM or lead list with auctioneer email, phone, and website fields from search results
  • Display detailed auctioneer bios and membership tenure using get_auctioneer_profile dates and bio fields
  • Build a specialty directory filtered by auction category using slugs from list_auctioneer_categories
  • Cross-reference NAA designation holders across states for compliance or partnership research
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 the National Auction Association offer an official developer API?+
NAA does not publish a documented public developer API for its member directory. This Parse API provides structured access to the NAA directory data at auctioneers.org.
What does `get_auctioneer_profile` return that `search_auctioneers` does not?+
get_auctioneer_profile adds a bio narrative, a dates object with member_since and original_join_date, and a structured details block with address, phone, email, and website. Search results include the same contact fields at a summary level but omit biography text and join-date history.
How do I know which values are valid for the `category` and `designation` filters?+
Call list_auctioneer_categories to get current category slugs (e.g. antiques-and-collectibles) and list_naa_designations to get valid designation slugs (e.g. cai, bas, aare). Pass the URL field value as category and the value field as designation in search_auctioneers.
Does the API return auction listings or upcoming auction events?+
No. The API covers member profiles, contact details, specialty categories, and NAA designations — it does not return auction listings, lot data, or event schedules. You can fork this API on Parse and revise it to add an endpoint targeting NAA auction event pages if that data is needed.
Is there a limit to how many results `search_auctioneers` can return at once?+
The endpoint is paginated using 0-indexed page and limit parameters. The total field in the response indicates the full result count for a given query, allowing you to iterate through pages. Very broad searches with no filters may return large total counts, so using limit to control page size is recommended.
Page content last updated . Spec covers 4 endpoints from auctioneers.org.
Related APIs in B2b DirectorySee all →
13f.info API
13f.info API
mouser.com API
mouser.com API
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.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
yellowpages-uae.com API
Search and discover UAE businesses with instant access to contact details, locations, and branch information from the Yellow Pages UAE directory. Find companies by name, get detailed business profiles, explore multiple branches, and browse available cities all in one place.
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.
cursor.directory API
Search and discover AI cursor rules, MCP servers, and job listings organized by category to enhance your development workflow. Browse detailed information about each rule and server to find the tools and configurations that best fit your needs.