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

# Find Enrichment result

> Retrieve enrichment results for a single contact



## OpenAPI

````yaml GET /contacts/{id}
openapi: 3.0.1
info:
  title: Pipecorn List API
  description: Pipecorn List API
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.pipecorn.com/api/v2/
security:
  - defaultApiKey: []
paths:
  /contacts/{id}:
    get:
      summary: Get single contact enrichment result
      description: Retrieves the enrichment result for a single contact by enrichment ID.
      parameters:
        - name: id
          in: path
          required: true
          description: The ID of the enrichment request to retrieve
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Enrichment result retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  enrichment_id:
                    type: string
                    format: uuid
                    description: The ID of the enrichment request
                  first_name:
                    type: string
                    description: The contact's first name
                  last_name:
                    type: string
                    description: The contact's last name
                  status:
                    type: string
                    enum:
                      - finished
                      - pending
                    description: >-
                      The status of the enrichment request. `pending` while the
                      waterfall is still running, `finished` once all requested
                      enrichments have completed (regardless of whether data was
                      found).
                  email:
                    type: string
                    format: email
                    description: >-
                      The enriched professional email address (present if
                      enrichment_type included email)
                  email_status:
                    type: string
                    description: >-
                      The validation status of the professional email (e.g.
                      `deliverable`, `catch-all`, `N/A`)
                  personal_email:
                    type: string
                    format: email
                    description: >-
                      The enriched personal email address (present if
                      enrichment_type included personal_email)
                  personal_email_status:
                    type: string
                    description: >-
                      The validation status of the personal email (e.g. `valid`,
                      `invalid`, `catch-all`, `N/A`)
                  phone:
                    type: array
                    items:
                      type: string
                      description: Phone number in E.164 format
                    description: >-
                      Array of enriched phone numbers (empty array when none
                      found)
                  custom:
                    type: object
                    description: Custom fields passed in the request
                    additionalProperties: true
              example:
                enrichment_id: 123e4567-e89b-12d3-a456-426614174000
                first_name: Mathieu
                last_name: Brun-Picard
                status: finished
                email: mathieu@prontohq.com
                email_status: deliverable
                personal_email: mathieu.bp@gmail.com
                personal_email_status: valid
                phone:
                  - '+12015550123'
                custom:
                  hubspot_id: '4447901'
        '404':
          description: Enrichment not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: 404
                message: Enrichment not found
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    defaultApiKey:
      type: apiKey
      in: header
      description: Your API key
      name: X-API-KEY

````