> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lunarmc.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Customer 360 Profile

> Get a comprehensive customer profile by identity ID



## OpenAPI

````yaml GET /api/v1/customer_360/{child_id}
openapi: 3.1.0
info:
  title: Mission Control REST API
  description: >-
    Mission Control platform API for identity resolution, multi-touch
    attribution, and customer analytics
  version: 1.0.0
servers:
  - url: https://id.lunarmc.ai
security:
  - bearerAuth: []
paths:
  /api/v1/customer_360/{child_id}:
    get:
      tags:
        - Public API (v1)
      summary: Customer 360 Profile
      description: Get a comprehensive customer profile by identity ID
      parameters:
        - name: child_id
          in: path
          required: true
          schema:
            type: string
          description: Customer identity ID
      responses:
        '200':
          description: Customer 360 profile data
        '404':
          description: Customer not found
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token obtained from /api/get_token/

````