Skip to main content
C
CustomerIQ
Platform
Solutions
Customers
Pricing
Resources
Company
Contact Sales
  1. Home
  2. Docs
C
CustomerIQ

The next-generation customer data platform that unifies, predicts, and activates.

XLiGh

Platform

  • Customer 360
  • AI Engine
  • Identity Resolution
  • Integrations

Solutions

  • Personalization
  • Churn Prevention
  • Revenue Growth
  • Partners

Resources

  • Blog
  • API Docs
  • Learning Lab
  • Changelog

Company

  • About
  • Careers
  • Newsroom
  • Contact

© 2026 CustomerIQ. All rights reserved.

Privacy PolicyTerms of ServiceCookie Policy
HomePlatformPricingBlogContact
API Reference v1

API Documentation

Everything you need to integrate with the CustomerIQ customer data platform. Build unified customer profiles, create audiences, track events, and activate data across your entire stack.

Base URL:https://api.c360.site
Auth:Bearer sk_live_...
Format:JSON

Quick Links

Getting Started GuideAuthenticationError CodesRate Limits
GET/v1/profiles/:id

Retrieve a single customer profile by its unique identifier. Returns the full unified profile including merged attributes from all connected sources.

Parameters

NameTypeRequiredDescription
idstringrequiredThe unique profile identifier (e.g. prof_abc123)
includestringoptionalComma-separated list of relations to include (events, audiences, traits)

Code Examples

"color:#22d3ee">curl -X "color:#a78bfa">GET https://api.c360.site/v1/profiles/prof_abc123 \
  "color:#a78bfa">-H "Authorization: Bearer sk_live_..." \
  "color:#a78bfa">-H "Content-Type: application/json"

Response Example

Response
200 OK
{
  "id": "prof_abc123",
  "email": "jane@example.com",
  "name": "Jane Doe",
  "phone": "+1-555-0199",
  "traits": {
    "plan": "enterprise",
    "ltv": 48200,
    "signup_date": "2024-01-15"
  },
  "audiences": [
    "aud_high_value",
    "aud_enterprise"
  ],
  "sources": [
    "src_salesforce",
    "src_stripe"
  ],
  "created_at": "2024-01-15T08: 30: 00Z",
  "updated_at": "2025-03-22T14: 12: 33Z"
}

Ready to get started?

Create a free account and get your API key in under a minute. Full access to all endpoints during your 14-day trial.

Get API KeyView SDKs