curl --request GET \
--url https://api.wellapp.ai/v1/companies \
--header 'Authorization: <authorization>'{
"data": [
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440000",
"attributes": {
"name": "TechCorp Solutions GmbH",
"description": "Leading technology company specializing in AI solutions and business automation",
"business_entity": "GmbH",
"registration": {
"tax_id": "12345678901",
"registered_value": "123456789",
"country": "DE"
},
"registration_number": {
"value": "HRB 123456",
"authority": "Amtsgericht München"
},
"has_logo": true,
"workspace_id": [
"550e8400-e29b-41d4-a716-446655440004"
],
"created_at": "2024-08-15T10:30:00Z",
"updated_at": "2024-12-01T14:22:00Z"
},
"relationships": {
"created_by": {
"data": {
"type": "user",
"id": "550e8400-e29b-41d4-a716-446655440020"
}
},
"people": {
"data": [
{
"type": "people",
"id": "550e8400-e29b-41d4-a716-446655440001"
}
]
},
"emails": {
"data": [
{
"type": "email",
"id": "550e8400-e29b-41d4-a716-446655440010"
}
]
},
"phones": {
"data": [
{
"type": "phone",
"id": "550e8400-e29b-41d4-a716-446655440011"
}
]
},
"web_links": {
"data": [
{
"type": "web_link",
"id": "550e8400-e29b-41d4-a716-446655440012"
}
]
},
"media": {
"data": [
{
"type": "media",
"id": "550e8400-e29b-41d4-a716-446655440014"
}
]
},
"documents": {
"data": [
{
"type": "document",
"id": "550e8400-e29b-41d4-a716-446655440016"
}
]
},
"locations": {
"data": [
{
"type": "location",
"id": "550e8400-e29b-41d4-a716-446655440013"
}
]
},
"workspaces": {
"data": [
{
"type": "workspace",
"id": "550e8400-e29b-41d4-a716-446655440004"
}
]
},
"parents": {
"data": [
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440017"
}
]
},
"subsidiaries": {
"data": [
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440018"
}
]
}
}
}
],
"included": [
{
"type": "people",
"id": "550e8400-e29b-41d4-a716-446655440001",
"attributes": {
"first_name": "Klaus",
"last_name": "Weber",
"full_name": "Klaus Weber",
"relationship_type": "owner",
"job_title": "Founder & CEO"
}
},
{
"type": "workspace",
"id": "550e8400-e29b-41d4-a716-446655440004",
"attributes": {
"name": "European Operations",
"description": "Main workspace for European business operations",
"created_at": "2024-01-10T08:15:00Z"
}
},
{
"type": "email",
"id": "550e8400-e29b-41d4-a716-446655440010",
"attributes": {
"value": "[email protected]",
"label": "work",
"is_verified": true,
"is_primary": true
}
},
{
"type": "phone",
"id": "550e8400-e29b-41d4-a716-446655440011",
"attributes": {
"value": "+491234567890",
"label": "work",
"is_verified": true,
"is_primary": true
}
},
{
"type": "web_link",
"id": "550e8400-e29b-41d4-a716-446655440012",
"attributes": {
"url": "https://www.linkedin.com/company/techcorp-solutions",
"platform": "linkedin",
"is_primary": true
}
},
{
"type": "location",
"id": "550e8400-e29b-41d4-a716-446655440013",
"attributes": {
"street": "Maximilianstrasse 123",
"city": "München",
"postal_code": "80539",
"country": "DE",
"is_primary": true,
"is_registered": true
}
},
{
"type": "media",
"id": "550e8400-e29b-41d4-a716-446655440014",
"attributes": {
"url": "https://cdn.techcorp.com/logo.png",
"media_type": "logo",
"is_primary": true
}
},
{
"type": "user",
"id": "550e8400-e29b-41d4-a716-446655440020",
"attributes": {
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"created_at": "2024-01-05T09:00:00Z"
}
},
{
"type": "document",
"id": "550e8400-e29b-41d4-a716-446655440016",
"attributes": {
"name": "Company Registration Certificate",
"file_name": "registration_certificate.pdf",
"mime_type": "application/pdf",
"size": 245760,
"is_public": false,
"created_at": "2024-08-15T10:30:00Z"
}
},
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440017",
"attributes": {
"name": "Global Tech Holdings",
"description": "Parent company of TechCorp Solutions",
"business_entity": "AG",
"relationship_type": "parent"
}
},
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440018",
"attributes": {
"name": "TechCorp Software Labs",
"description": "R&D subsidiary specializing in software development",
"business_entity": "GmbH",
"relationship_type": "subsidiary"
}
}
],
"meta": {
"pagination": {
"total": 2,
"count": 2,
"per_page": 25,
"current_page": 1,
"total_pages": 1
}
}
}Retrieve a paginated list of companies. By default, only basic company data is returned with relationship IDs. Use the ‘include’ parameter to get detailed relationship data.
curl --request GET \
--url https://api.wellapp.ai/v1/companies \
--header 'Authorization: <authorization>'{
"data": [
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440000",
"attributes": {
"name": "TechCorp Solutions GmbH",
"description": "Leading technology company specializing in AI solutions and business automation",
"business_entity": "GmbH",
"registration": {
"tax_id": "12345678901",
"registered_value": "123456789",
"country": "DE"
},
"registration_number": {
"value": "HRB 123456",
"authority": "Amtsgericht München"
},
"has_logo": true,
"workspace_id": [
"550e8400-e29b-41d4-a716-446655440004"
],
"created_at": "2024-08-15T10:30:00Z",
"updated_at": "2024-12-01T14:22:00Z"
},
"relationships": {
"created_by": {
"data": {
"type": "user",
"id": "550e8400-e29b-41d4-a716-446655440020"
}
},
"people": {
"data": [
{
"type": "people",
"id": "550e8400-e29b-41d4-a716-446655440001"
}
]
},
"emails": {
"data": [
{
"type": "email",
"id": "550e8400-e29b-41d4-a716-446655440010"
}
]
},
"phones": {
"data": [
{
"type": "phone",
"id": "550e8400-e29b-41d4-a716-446655440011"
}
]
},
"web_links": {
"data": [
{
"type": "web_link",
"id": "550e8400-e29b-41d4-a716-446655440012"
}
]
},
"media": {
"data": [
{
"type": "media",
"id": "550e8400-e29b-41d4-a716-446655440014"
}
]
},
"documents": {
"data": [
{
"type": "document",
"id": "550e8400-e29b-41d4-a716-446655440016"
}
]
},
"locations": {
"data": [
{
"type": "location",
"id": "550e8400-e29b-41d4-a716-446655440013"
}
]
},
"workspaces": {
"data": [
{
"type": "workspace",
"id": "550e8400-e29b-41d4-a716-446655440004"
}
]
},
"parents": {
"data": [
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440017"
}
]
},
"subsidiaries": {
"data": [
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440018"
}
]
}
}
}
],
"included": [
{
"type": "people",
"id": "550e8400-e29b-41d4-a716-446655440001",
"attributes": {
"first_name": "Klaus",
"last_name": "Weber",
"full_name": "Klaus Weber",
"relationship_type": "owner",
"job_title": "Founder & CEO"
}
},
{
"type": "workspace",
"id": "550e8400-e29b-41d4-a716-446655440004",
"attributes": {
"name": "European Operations",
"description": "Main workspace for European business operations",
"created_at": "2024-01-10T08:15:00Z"
}
},
{
"type": "email",
"id": "550e8400-e29b-41d4-a716-446655440010",
"attributes": {
"value": "[email protected]",
"label": "work",
"is_verified": true,
"is_primary": true
}
},
{
"type": "phone",
"id": "550e8400-e29b-41d4-a716-446655440011",
"attributes": {
"value": "+491234567890",
"label": "work",
"is_verified": true,
"is_primary": true
}
},
{
"type": "web_link",
"id": "550e8400-e29b-41d4-a716-446655440012",
"attributes": {
"url": "https://www.linkedin.com/company/techcorp-solutions",
"platform": "linkedin",
"is_primary": true
}
},
{
"type": "location",
"id": "550e8400-e29b-41d4-a716-446655440013",
"attributes": {
"street": "Maximilianstrasse 123",
"city": "München",
"postal_code": "80539",
"country": "DE",
"is_primary": true,
"is_registered": true
}
},
{
"type": "media",
"id": "550e8400-e29b-41d4-a716-446655440014",
"attributes": {
"url": "https://cdn.techcorp.com/logo.png",
"media_type": "logo",
"is_primary": true
}
},
{
"type": "user",
"id": "550e8400-e29b-41d4-a716-446655440020",
"attributes": {
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"created_at": "2024-01-05T09:00:00Z"
}
},
{
"type": "document",
"id": "550e8400-e29b-41d4-a716-446655440016",
"attributes": {
"name": "Company Registration Certificate",
"file_name": "registration_certificate.pdf",
"mime_type": "application/pdf",
"size": 245760,
"is_public": false,
"created_at": "2024-08-15T10:30:00Z"
}
},
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440017",
"attributes": {
"name": "Global Tech Holdings",
"description": "Parent company of TechCorp Solutions",
"business_entity": "AG",
"relationship_type": "parent"
}
},
{
"type": "company",
"id": "550e8400-e29b-41d4-a716-446655440018",
"attributes": {
"name": "TechCorp Software Labs",
"description": "R&D subsidiary specializing in software development",
"business_entity": "GmbH",
"relationship_type": "subsidiary"
}
}
],
"meta": {
"pagination": {
"total": 2,
"count": 2,
"per_page": 25,
"current_page": 1,
"total_pages": 1
}
}
}curl -X GET "https://api.well.com/v1/companies?include=peoples,workspaces,emails,phones,web_links,locations,documents,media,categories,parents,subsidiaries&filter[workspace_id]=550e8400-e29b-41d4-a716-446655440000&filter[name]=TechCorp&filter[business_entity]=GmbH&filter[registration_tax_id]=12345678901&filter[registration_registered_value]=123456789&filter[country]=DE&filter[people_id]=550e8400-e29b-41d4-a716-446655440001&filter[email][email protected]&filter[phone_number]=+491234567890&filter[has_logo]=true&filter[created_at_from]=2024-01-01T00:00:00Z&filter[created_at_to]=2024-12-31T23:59:59Z&filter[updated_at_from]=2024-06-01T00:00:00Z&sort=-created_at&page[limit]=25&page[cursor]=eyJjcmVhdGVkX2F0IjoiMjAyNS0xMS0wMlQxMDozMDowMFoiLCJpZCI6ImNvbXBhbnk5LXV1aWQifQ==" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Bearer token for authentication
Include detailed relationship data in the response. Comma-separated values supported.
workspace, company, people, documents, created_by, medias, web_links, emails, phones, categories, locations, people, parents, subsidiaries Filter companies created on or after this date
Filter companies created on or before this date
Filter companies updated on or after this date
Filter companies updated on or before this date
Filter companies by creator ID(s)
Filter companies by workspace ID(s)
Filter companies by external workspace ID(s)
Filter companies by email address(es)
Filter companies by phone number(s)
Filter companies by parent registration number(s)
Filter companies by associated document ID(s)
Filter companies by parent company ID(s)
Filter companies by parent company tax ID value(s)
Filter companies by parent company registration value(s)
Filter companies by primary domain URL(s)
Sort companies by field. Use - prefix for descending order.
created_at, -created_at, updated_at, -updated_at, issue_date, -issue_date, due_date, -due_date Companies retrieved successfully
Show child attributes
"company"UUID of the created company
"550e8400-e29b-41d4-a716-446655440000"
Show child attributes
The domain url from the website or email address of the company. Used as unique identifier in some cases.
500Show child attributes
Legal entity structure type.
Official company registration number.
Name of the official registration body.
Country of the registry authority. (string (ISO 3166-1 alpha-2))
UUID of the workspace associated with this company
Show child attributes
Show child attributes
Show child attributes
"people"UUID of the person
"550e8400-e29b-41d4-a716-446655440008"
Object containing included resources referenced in relationships, organized by resource type. These are the actual created/linked resources with real UUIDs.
Show child attributes
Person who created this company
Show child attributes
Show child attributes
"people"UUID of the person
Show child attributes
The person's first name
The person's last name
The person's full name (typically first_name + last_name)
Timestamp when the person was created
Timestamp when the person was last updated
Person associated with the company
Show child attributes
Show child attributes
"people"UUID of the person
Show child attributes
The person's first name
The person's last name
The person's full name (typically first_name + last_name)
Timestamp when the person was created
Timestamp when the person was last updated
Parent company of this company
Show child attributes
Show child attributes
"company"UUID of the parent company
Show child attributes
The domain url from the website or email address of the company. Used as unique identifier in some cases.
500Show child attributes
Legal entity structure type.
Official company registration number.
Name of the official registration body.
Country of the registry authority. (string (ISO 3166-1 alpha-2))
UUID of the workspace associated with this company
Subsidiary companies of this company
Show child attributes
Show child attributes
"company"UUID of the subsidiary company
Show child attributes
The domain url from the website or email address of the company. Used as unique identifier in some cases.
500Show child attributes
Legal entity structure type.
Official company registration number.
Name of the official registration body.
Country of the registry authority. (string (ISO 3166-1 alpha-2))
UUID of the workspace associated with this company
Workspaces associated with this company
Show child attributes
Show child attributes
"workspace"UUID of the workspace
Show child attributes
Workspace name
Workspace description
external workspace id
Color of the avatar
Timestamp when the workspace was created
Timestamp when the workspace was last updated
Email addresses associated with this company
Show child attributes
Show child attributes
"email"UUID of the email
Show child attributes
Email address value
Whether this is the primary email address. Defaults to 'false', unless no other email is marked as primary (in which case it becomes 'true'). Only one email can be marked as primary per person/company.
true
Email label type. See all available labels for complete list.
work, personal, other, ... "work"
Timestamp when the email was created
"2023-06-15T10:30:00Z"
Timestamp when the email was last updated
"2023-06-15T10:30:00Z"
Phone numbers associated with this company
Show child attributes
Show child attributes
"phone"UUID of the phone
Show child attributes
Full international phone number in E164 format
"+14155552671"
Phone label type. See all available labels for complete list.
work, personal, other, ... Whether this is the primary phone number
Timestamp when the phone was created
Locations/addresses associated with this company
Show child attributes
Show child attributes
"location"UUID of the location
Show child attributes
Complete formatted address
Primary address line
Secondary address line
City name
State, province, or region
Postal or ZIP code
Two-letter ISO country code
Geographic latitude coordinate
Geographic longitude coordinate
Whether this is the primary location
Whether this is a registered business address
Custom label for the location
Date and time when the location was created
Date and time when the location was last updated
Media files associated with this company
Show child attributes
Show child attributes
"media"UUID of the media
Show child attributes
avatar, logo, banner URL to the media file
Whether this is the primary media
Timestamp when media processing completed
Web links associated with this company
Show child attributes
Show child attributes
"web_link"UUID of the web link
Show child attributes
Web platform type
website, linkedin, x, github Full profile URL
Date and time when the web link was created
Date and time when the web link was updated
Documents associated with this company
Show child attributes
Show child attributes
"document"UUID of the document
Show child attributes