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

# Get deal by ID

> Returns a single deal/opportunity by its unique identifier.

> **Note:** The `amount` field is stored in cents with no decimals. The response includes an `amount_display` object for convenience:
>
> ```json
> "amount": "5522699",
> "amount_display": {
>   "formatted": "$55.23K",   // Human-readable string
>   "value": 55226.99,        // Numeric value in dollars with cents as decimal
>   "currency": "USD",
>   "unit": "cents"           // Unit of the raw amount field
> }
> ```




## OpenAPI

````yaml openapi.json get /v/alpha/deals/{id}
openapi: 3.1.0
info:
  title: Operate API Documentation
  description: 'API for Operate: A CRM designed for sales, built for founders'
  version: Alpha
servers:
  - url: https://api.operate.so
security:
  - apiKey: []
tags:
  - name: Companies
    description: Manage companies and their associated data
  - name: People
    description: Manage people/contacts and their associated data
  - name: Deals
    description: Manage deals and opportunities
  - name: Feedback
    description: Manage customer feedback and feature requests
  - name: Next Steps
    description: Manage action items and next steps
  - name: Profiles
    description: Manage organization profiles (team members)
paths:
  /v/alpha/deals/{id}:
    get:
      tags:
        - Deals
      summary: Get deal by ID
      description: >
        Returns a single deal/opportunity by its unique identifier.


        > **Note:** The `amount` field is stored in cents with no decimals. The
        response includes an `amount_display` object for convenience:

        >

        > ```json

        > "amount": "5522699",

        > "amount_display": {

        >   "formatted": "$55.23K",   // Human-readable string

        >   "value": 55226.99,        // Numeric value in dollars with cents as
        decimal

        >   "currency": "USD",

        >   "unit": "cents"           // Unit of the raw amount field

        > }

        > ```
      operationId: getVAlphaDealsById
      parameters:
        - name: id
          in: path
          required: true
          schema:
            format: uuid
            description: The unique identifier (UUID) of the deal
            examples:
              - 550e8400-e29b-41d4-a716-446655440000
            type: string
      responses:
        '200':
          description: Successful response
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Obtain from your Operate dashboard.

````