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

# Get enrichment request status and results

> Poll for the status and results of a previously submitted enrichment request.



## OpenAPI

````yaml /reference/openapi.yaml get /v2/people/enrich/{RequestID}
openapi: 3.1.0
info:
  title: Tamtam Public API
  version: 2.0.0
servers:
  - url: https://api.tamtam.ai/api
security: []
paths:
  /v2/people/enrich/{RequestID}:
    get:
      tags:
        - People Enrichment
      summary: Get enrichment request status and results
      description: >-
        Poll for the status and results of a previously submitted enrichment
        request.
      operationId: get-people-enrichment-status
      parameters:
        - description: Enrichment request ID returned by the POST endpoint
          in: path
          name: RequestID
          required: true
          schema:
            description: Enrichment request ID returned by the POST endpoint
            examples:
              - b3c6f5e2-1234-4abc-9def-0123456789ab
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetEnrichPeopleStatusOutputBody'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Error
      security:
        - apikeyAuth: []
        - bearerAuth: []
components:
  schemas:
    GetEnrichPeopleStatusOutputBody:
      additionalProperties: false
      properties:
        item_count:
          description: Number of enrichment requests in the batch
          examples:
            - 1
          format: int64
          type: integer
        request_id:
          description: Enrichment request ID
          examples:
            - b3c6f5e2-1234-4abc-9def-0123456789ab
          type: string
        results:
          description: Per-item enrichment results
          items:
            $ref: '#/components/schemas/EnrichResultItemDto'
          type:
            - array
            - 'null'
        status:
          description: 'Aggregate status: PROCESSING, COMPLETED, FAILED'
          examples:
            - COMPLETED
          type: string
      required:
        - request_id
        - status
        - item_count
        - results
      type: object
    ErrorModel:
      additionalProperties: false
      properties:
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    EnrichResultItemDto:
      additionalProperties: false
      properties:
        custom:
          additionalProperties:
            type: string
          description: Custom fields from the original request
          type: object
        emails:
          description: All found email addresses
          items:
            $ref: '#/components/schemas/EnrichResultEmailDto'
          type:
            - array
            - 'null'
        enrichment_type:
          description: 'Enrichment type: email, phone'
          examples:
            - email
          type: string
        error:
          description: Error message if this item failed
          type: string
        most_probable_email:
          description: Most probable email address
          examples:
            - elliot.alderson@tamtam.ai
          type: string
        phones:
          description: All found phone numbers
          items:
            $ref: '#/components/schemas/EnrichResultPhoneDto'
          type:
            - array
            - 'null'
        status:
          description: 'Item status: PROCESSING, COMPLETED, FAILED'
          examples:
            - COMPLETED
          type: string
      required:
        - status
        - enrichment_type
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
    EnrichResultEmailDto:
      additionalProperties: false
      properties:
        email:
          description: Email address
          examples:
            - elliot.alderson@tamtam.ai
          type: string
        status:
          description: >-
            Deliverability status: DELIVERABLE, UNKNOWN, INVALID,
            INVALID_DOMAIN, ROLE, SYNTAX, SPAM_TRAP, DISPOSABLE, CATCH_ALL
          examples:
            - DELIVERABLE
          type: string
      required:
        - email
        - status
      type: object
    EnrichResultPhoneDto:
      additionalProperties: false
      properties:
        number:
          description: Phone number
          examples:
            - '+33639981234'
          type: string
        region:
          description: Phone region code
          examples:
            - FR
          type: string
      required:
        - number
        - region
      type: object
  securitySchemes:
    apikeyAuth:
      description: Account API key passed in the Authorization header
      in: header
      name: Authorization
      type: apiKey
    bearerAuth:
      description: Bearer JWT obtained via the OAuth 2.1 authorization flow
      scheme: bearer
      type: http

````