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

# Get domain setup progress

> **Check domain activation progress**

Monitor the progress of your domain setup.

## Example Usage

```python
import requests

domain_id = "550e8400-e29b-41d4-a716-446655440000"

response = requests.get(
    f"https://api.coldsend.io/api/public/v1/domains/{domain_id}/progress",
    headers={"X-API-Key": "your-api-key"}
)

print(response.json())
```



## OpenAPI

````yaml /public_openapi.json get /api/public/v1/domains/{domain_id}/progress
openapi: 3.0.3
info:
  title: ColdSend Public API
  description: >-
    Programmatic access to ColdSend for managing cold email campaigns and sender
    accounts.
  version: 1.0.0
  contact:
    name: ColdSend Support
    email: support@coldsend.pro
    url: https://coldsend.pro
servers:
  - url: https://api.coldsend.pro
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /api/public/v1/domains/{domain_id}/progress:
    get:
      tags:
        - Domains
      summary: Get domain setup progress
      description: |-
        **Check domain activation progress**

        Monitor the progress of your domain setup.

        ## Example Usage

        ```python
        import requests

        domain_id = "550e8400-e29b-41d4-a716-446655440000"

        response = requests.get(
            f"https://api.coldsend.io/api/public/v1/domains/{domain_id}/progress",
            headers={"X-API-Key": "your-api-key"}
        )

        print(response.json())
        ```
      operationId: get_domain_progress_api_public_v1_domains__domain_id__progress_get
      parameters:
        - name: domain_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Domain Id
      responses:
        '200':
          description: Progress retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicDomainProgressResponse'
        '401':
          description: Missing or invalid API key
        '403':
          description: Insufficient permissions - requires 'domains:read' scope
        '404':
          description: Domain not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PublicDomainProgressResponse:
      properties:
        success:
          type: boolean
          title: Success
        message:
          type: string
          title: Message
        domain_id:
          type: string
          format: uuid
          title: Domain Id
          description: Domain ID
        domain_name:
          type: string
          title: Domain Name
          description: Domain name
        status:
          type: string
          title: Status
          description: 'Current status: PENDING, IN_PROGRESS, COMPLETED, or FAILED'
        progress_percentage:
          type: integer
          title: Progress Percentage
          description: Overall progress (0-100)
        is_complete:
          type: boolean
          title: Is Complete
          description: Whether setup is complete
        is_failed:
          type: boolean
          title: Is Failed
          description: Whether setup has failed
        status_message:
          type: string
          nullable: true
          title: Status Message
          description: User-friendly status message
      type: object
      required:
        - success
        - message
        - domain_id
        - domain_name
        - status
        - progress_percentage
        - is_complete
        - is_failed
      title: PublicDomainProgressResponse
      description: |-
        Simple domain setup progress response for customers.

        This schema hides ALL internal implementation details - no stages,
        no step names, no retry counts, no technical failure reasons.
        Just simple status information.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key with format cs_live_xxx

````