Salesforce APIappexchange.salesforce.com ↗
Search and discover Salesforce consulting partners on the AppExchange by their industry and product competencies, certifications, and specializations. Access detailed partner profiles including case study videos, highlights, and resources to find the right consultant for your organization's needs.
curl -X GET 'https://api.parse.bot/scraper/7c2927af-8a51-401e-93e3-6d57cc0fece2/search_consulting_partners?search_term=Deloitte' \ -H 'X-API-Key: $PARSE_API_KEY'
Search and list Salesforce consulting partners from the AppExchange partner finder. Returns paginated results with basic partner info and expertise summaries. Without a search_term, returns all partners sorted by expertise score. Each result includes a listing_id that can be passed to get_consulting_partner_detail for full information. One upstream round-trip per call; page through results with offset.
| Param | Type | Description |
|---|---|---|
| limit | integer | Number of results per page (1-100). |
| offset | integer | Zero-based offset for pagination. |
| sort_by | string | Sort order for results. Known value: 'expertise' (default). |
| search_term | string | Partner name search query. Omitting returns all consulting partners. |
{
"type": "object",
"fields": {
"limit": "Requested limit",
"total": "Total number of matching partners",
"offset": "Current offset",
"has_more": "Whether more results exist beyond this page",
"partners": "Array of partner summaries with id, name, listing_id, headquarters, description, expertises, rating, review_count"
},
"sample": {
"data": {
"limit": 20,
"total": 3,
"offset": 0,
"has_more": false,
"partners": [
{
"id": "a7f3m000000LKmhAAG",
"name": "Accenture",
"rating": 0,
"logo_url": "https://appexchange.salesforce.com/partners/servlet/servlet.FileDownload?file=00P4V00000qcylYUAQ",
"expertises": [
{
"name": "Agentforce",
"award": "Cloud Expert",
"score": 4615.6
},
{
"name": "Platform",
"award": "Cloud Expert",
"score": 24429.85
}
],
"listing_id": "a0N3000000266zBEAQ",
"description": "We help companies reinvent using data, AI, and Salesforce to connect with customers in new ways and deliver value across their organizations.",
"headquarters": "Global",
"review_count": 62,
"is_diverse_owned": false,
"number_of_projects": 22,
"is_pledge_1_percent": true,
"number_of_credentials": 22859
}
]
},
"status": "success"
}
}About the Salesforce API
The Salesforce API on Parse exposes 2 endpoints for the publicly available data on appexchange.salesforce.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.