Companies are organizational records in the Talkturo CRM. They act as a grouping layer above contacts — each contact belongs to a company, and each campaign is associated with one. You can store address, industry, size, and custom fields on a company, and the AI info extractor can update these fields automatically as calls complete.Documentation Index
Fetch the complete documentation index at: https://docs.talkturo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Create a company
POST /api/crm/companies
Creates a new company in your CRM.
Request body
The team ID that owns this company.
The company’s name.
The company’s website URL.
The industry the company operates in (for example,
"SaaS", "Healthcare", "Finance").A descriptor of the company’s size (for example,
"1-10", "51-200", "1000+").First line of the company’s street address.
Second address line (suite, floor, etc.).
City.
State or province.
Postal or ZIP code.
Country (for example,
"US", "GB", "DE").Company main phone number in E.164 format.
Free-text notes about the company.
Key-value object for any additional company-level data.
Example request
Response
Unique identifier for the company. Use this ID when creating contacts or campaigns.
The team this company belongs to.
Company name.
Company website URL.
Industry descriptor.
Company size descriptor.
Main company phone number.
First line of the street address.
Second line of the address.
City.
State or province.
Postal or ZIP code.
Country code.
Free-text notes.
Key-value pairs of custom company data.
Number of contacts associated with this company.
ISO 8601 timestamp of when the company was created.
ISO 8601 timestamp of the most recent update.
List companies
GET /api/crm/companies
Returns a paginated list of companies. You can filter by team or account, search by name, and filter by industry.
Query parameters
The team ID to list companies for. Provide either
teamId or accountSlug.Your account slug. Alternative to
teamId.Search by company name.
Filter by industry value.
Maximum records to return. Defaults to
50.Records to skip for pagination. Defaults to
0.Example request
Response
Array of company objects.
Total number of companies matching the filters.
The
limit value applied to this response.The
offset value applied to this response.When creating a campaign, you must supply a
companyId. Create your company record first, then create contacts under it, then create the campaign.