← All categories

CRM

Read, write, and manage CRM data for pipeline tracking

Query deals, update pipeline stages, create contacts, and log activities

manage-crm

Recommended

Salesforce

by salesforce.com

Enterprise standard CRM. Full REST API for deals, contacts, accounts, and activities. JWT Bearer auth for server-to-server access.

Auth: oauth2
Setup: medium
Pricing: Starts at $25/user/mo

Example API call

GET https://YOUR_INSTANCE.salesforce.com/services/data/v59.0/query?q=SELECT+Id,Name,Amount,StageName+FROM+Opportunity+LIMIT+10



// Response:
{
  "records": [
    {
      "Id": "006XXXXXXXXXXXXXXX",
      "Name": "Acme Corp Enterprise",
      "Amount": 50000,
      "StageName": "Negotiation/Review"
    }
  ]
}
View full docs →