GET
/
customerbase
/
v1
/
organizations
/
{id}
curl --request GET \
  --url https://api.customeros.ai/customerbase/v1/organizations/{id} \
  --header 'X-CUSTOMER-OS-API-KEY: <api-key>'
{
  "organization": {
    "cosId": "<string>",
    "customId": "<string>",
    "domains": [
      "<string>"
    ],
    "externalLinks": [
      {
        "id": "<string>",
        "name": "<string>",
        "primary": true
      }
    ],
    "icpFit": true,
    "id": "<string>",
    "leadSource": "<string>",
    "name": "<string>",
    "relationship": "<string>",
    "stage": "<string>",
    "website": "<string>"
  },
  "requestId": "1234567890abcdef",
  "status": "success"
}

Authorizations

X-CUSTOMER-OS-API-KEY
string
header
required

Path Parameters

id
string
required

Organization ID or COS ID

Response

200
application/json
Organization found

Response structure for single organization operations

organization
object

The organization information

requestId
string
Example:

"1234567890abcdef"

status
string

Status indicates the result of the operation ("success" or "error")

Example:

"success"