Sync permissioned opportunities data with Copper through Apideck's unified API. One integration, instant access to the governed data your team needs.
Full CRUD support available through our unified API
Fields available for Copper Opportunities
idtitleprimary_contact_iddescriptionmonetary_amountcurrencywin_probabilityclose_dateloss_reason_idpipeline_idpipeline_stage_idcompany_idcompany_nameowner_idpriority+9 moreSample response structure for opportunities
{
"id": "12345",
"title": "Example Title",
"primary_contact_id": "12345",
"description": "Example Description",
"monetary_amount": 100,
"currency": "USD",
"win_probability": "string",
"close_date": "2024-01-15",
"loss_reason_id": "12345",
"pipeline_id": "12345",
"pipeline_stage_id": "12345",
"company_id": "12345",
"company_name": "Example Company Name",
"owner_id": "12345",
"priority": "string",
"status": "active",
"tags": [
{
"id": "12345",
"nam
...Start syncing Copper opportunities in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List opportunities from Copper
const result = await apideck.crm.opportunities.list({
serviceId: 'copper'
})
for await (const page of result) {
console.log(page)
}
// Returns unified opportunities dataWe build and maintain connectors, so you don't have to. View our full list of CRM connectors.
Missing a connector? We're able to add new connectors.
Build Copper integrations in your favorite language with our official SDKs.
Build Copper integrations with the official Node.js SDK.
Build Copper integrations with the official TypeScript SDK.
Build Copper integrations with the official PHP SDK.
Build Copper integrations with the official .NET.
Build Copper integrations with the official Python SDK.
Build Copper integrations with the official Java SDK.
Build Copper integrations with the official Go SDK.