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

# Read one job lead

> Submitted service requests with captured contact/address, free-form intake source, and recorded conversion state. A converted lead is not evidence of a sale; multiple leads can refer to one job.



## OpenAPI

````yaml /openapi.json get /job-leads/{id}
openapi: 3.0.3
info:
  title: Breezy Public Reporting API
  version: 1.0.0
  description: >-
    Read customers, team members, jobs, visits, assignments, installed
    equipment, captured form responses, time entries, configured-period
    timesheets, business reference catalogs, job leads, estimates, invoices,
    payments, refunds, recorded job financials, saved sold/earned credits, and
    financial summaries for your company. Existing API keys grant company-wide
    read access. Amounts are integer USD cents. Reads return current corrected
    records, with cursor pagination for collecting results.


    Read the [Breezy FSM guides](https://developers.getbreezyapp.com) for
    authentication, pagination, refresh limits, and business measures. All reads
    use latest corrected company records; cursors do not create a snapshot or a
    complete change feed.
servers:
  - url: https://api.getbreezyapp.com/v1
    description: Breezy FSM production API
security:
  - apiKey: []
tags:
  - name: Company
  - name: Invoices
  - name: Payments
  - name: Refunds
  - name: Reports
  - name: TeamMembers
  - name: Accounts
  - name: Contacts
  - name: Locations
  - name: Jobs
  - name: JobAppointments
  - name: JobAssignments
  - name: BusinessUnits
  - name: JobTypes
  - name: JobClasses
  - name: JobLifecycles
  - name: LeadSources
  - name: Tags
  - name: Estimates
  - name: JobLeads
  - name: Equipment
  - name: FormResponses
  - name: TimeEntries
  - name: Timesheets
  - name: JobFinancials
  - name: RevenueAttributions
externalDocs:
  description: Breezy FSM reporting guides and API reference
  url: https://developers.getbreezyapp.com
paths:
  /job-leads/{id}:
    get:
      tags:
        - JobLeads
      summary: Read one job lead
      description: >-
        Submitted service requests with captured contact/address, free-form
        intake source, and recorded conversion state. A converted lead is not
        evidence of a sale; multiple leads can refer to one job.
      operationId: getJobLead
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Successful read. Clients ignore unrecognized response fields.
          headers:
            Cache-Control:
              schema:
                type: string
              example: private, no-store
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobLeadResponse'
              example:
                data:
                  id: 11111111-1111-4111-8111-000000001207
                  status: converted
                  created_at: '2026-08-18T16:00:00Z'
                  updated_at: '2026-09-08T19:00:00Z'
                  summary: Air conditioner stopped cooling.
                  request_type: SERVICE
                  submitted_account_type: Residential
                  submitted_service_type: null
                  submitted_job_type:
                    id: 11111111-1111-4111-8111-000000000301
                    name: HVAC Service
                  source_text: Booking Website
                  contact:
                    first_name: Jordan
                    last_name: Example
                    email_address: jordan@example.invalid
                    phone_number: '+12025550123'
                  service_address:
                    line_1: 123 Example Lane
                    line_2: null
                    city: Los Angeles
                    state: CA
                    postal_code: '90001'
                  existing_location_id: null
                  job_id: 11111111-1111-4111-8111-000000000501
                meta:
                  request_id: 11111111-1111-4111-8111-000000009999
                  generated_at: '2026-09-08T19:00:00Z'
                  timezone: America/Los_Angeles
        '400':
          description: >-
            Malformed input, unknown query parameter, unsupported combination or
            invalid cursor.
          headers:
            Cache-Control:
              schema:
                type: string
              example: private, no-store
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: INVALID_REQUEST
                  message: end_date must be later than start_date
                  request_id: example-request
                  details: []
        '401':
          description: Missing, invalid or expired key, or invalid linked identity.
          headers:
            Cache-Control:
              schema:
                type: string
              example: private, no-store
            WWW-Authenticate:
              schema:
                type: string
              example: Bearer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: UNAUTHENTICATED
                  message: A valid API key is required
                  request_id: example-request
                  details: []
        '404':
          description: >-
            Missing resource or resource outside the authenticated company. Same
            response for both.
          headers:
            Cache-Control:
              schema:
                type: string
              example: private, no-store
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: NOT_FOUND
                  message: Resource not found
                  request_id: example-request
                  details: []
        '405':
          description: Write methods do not mutate business data and return 405.
          headers:
            Cache-Control:
              schema:
                type: string
              example: private, no-store
            Allow:
              schema:
                type: string
              example: GET, HEAD, OPTIONS
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: METHOD_NOT_ALLOWED
                  message: This resource supports GET
                  request_id: example-request
                  details: []
        '429':
          description: Company request budget exhausted; retry after the indicated delay.
          headers:
            Cache-Control:
              schema:
                type: string
              example: private, no-store
            Retry-After:
              schema:
                type: integer
                minimum: 1
              description: Seconds before retrying.
              example: 30
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: RATE_LIMITED
                  message: Request limit exceeded
                  request_id: example-request
                  details: []
        '500':
          description: >-
            Unexpected failure. Share request_id with support; no stack or
            provider secrets in response.
          headers:
            Cache-Control:
              schema:
                type: string
              example: private, no-store
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: INTERNAL_ERROR
                  message: Unable to complete request
                  request_id: example-request
                  details: []
      security:
        - apiKey: []
components:
  schemas:
    JobLeadResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/JobLead'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
      required:
        - data
        - meta
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - INVALID_REQUEST
                - INVALID_CURSOR
                - UNAUTHENTICATED
                - NOT_FOUND
                - METHOD_NOT_ALLOWED
                - RATE_LIMITED
                - INTERNAL_ERROR
            message:
              type: string
            request_id:
              type: string
            details:
              type: array
              items:
                type: object
                properties:
                  field:
                    type: string
                  message:
                    type: string
                required:
                  - field
                  - message
          required:
            - code
            - message
            - request_id
            - details
      required:
        - error
    JobLead:
      type: object
      properties:
        id:
          type: string
          format: uuid
        status:
          allOf:
            - $ref: '#/components/schemas/JobLeadStatus'
            - description: Recorded intake state. Converted does not mean sold or paid.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
          description: >-
            Last parent-record edit only. Child and relationship edits may not
            advance it; not a complete change feed.
        summary:
          type: string
          nullable: true
        request_type:
          type: string
          nullable: true
          description: Recorded service-request category; legacy values are retained.
        submitted_account_type:
          type: string
          nullable: true
          description: Captured customer-type text; not the current account classification.
        submitted_service_type:
          type: string
          nullable: true
          description: >-
            Legacy submitted service-type text, separate from configured job
            types.
        submitted_job_type:
          $ref: '#/components/schemas/NullableReference'
        source_text:
          type: string
          nullable: true
          description: >-
            Free-form intake source text, not a configured lead-source ID or
            inferred attribution.
        contact:
          type: object
          properties:
            first_name:
              type: string
              nullable: true
            last_name:
              type: string
              nullable: true
            email_address:
              type: string
              nullable: true
            phone_number:
              type: string
              nullable: true
          required:
            - first_name
            - last_name
            - email_address
            - phone_number
        service_address:
          type: object
          properties:
            line_1:
              type: string
              nullable: true
            line_2:
              type: string
              nullable: true
            city:
              type: string
              nullable: true
            state:
              type: string
              nullable: true
            postal_code:
              type: string
              nullable: true
          required:
            - line_1
            - line_2
            - city
            - state
            - postal_code
        existing_location_id:
          type: string
          nullable: true
          format: uuid
        job_id:
          type: string
          nullable: true
          format: uuid
          description: >-
            Recorded converted-job link. Multiple leads can link to one job; no
            conversion timestamp is stored.
      required:
        - id
        - status
        - created_at
        - updated_at
        - summary
        - request_type
        - submitted_account_type
        - submitted_service_type
        - submitted_job_type
        - source_text
        - contact
        - service_address
        - existing_location_id
        - job_id
      description: >-
        Submitted request and captured contact/address values. These are not
        enriched from current CRM records.
    ResponseMeta:
      type: object
      properties:
        request_id:
          type: string
        generated_at:
          type: string
          format: date-time
        timezone:
          type: string
      required:
        - request_id
        - generated_at
        - timezone
      description: >-
        Generation time and company timezone. generated_at is not a snapshot or
        synchronization token.
    JobLeadStatus:
      type: string
      enum:
        - open
        - converted
        - archived
    NullableReference:
      type: object
      nullable: true
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
      required:
        - id
        - name
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        Existing Breezy API key. Grants all published reads in its associated
        company. No app permission scopes.

````