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

# Get a contact

> Returns the contact plus its audience membership (audienceIds).



## OpenAPI

````yaml /openapi.json get /marketing/contacts/{id}
openapi: 3.0.0
info:
  title: JetEmail API
  version: 1.0.0
  description: API documentation for JetEmail's transactional email service.
servers:
  - url: https://api.jetemail.com
    description: Production
security:
  - apiKeyAuth: []
tags:
  - name: Email
    description: Send transactional email
  - name: Outbound
    description: 'Outbound sending: keys, SMTP users, domains, logs, suppression'
  - name: Inbound
    description: Inbound routing, domains and forward destinations
  - name: Marketing
    description: >-
      Marketing suite: templates, audiences, contacts, broadcasts, themes,
      assets
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /marketing/contacts/{id}:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Marketing
      summary: Get a contact
      description: Returns the contact plus its audience membership (audienceIds).
      responses:
        '200':
          description: Contact
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  contact:
                    $ref: '#/components/schemas/MarketingContact'
        '404':
          description: Not found
components:
  schemas:
    MarketingContact:
      type: object
      properties:
        id:
          type: string
        email:
          type: string
          example: jane@example.com
        first_name:
          type: string
        last_name:
          type: string
        attributes:
          type: string
          description: JSON object of custom merge fields
        status:
          type: string
          enum:
            - subscribed
            - unsubscribed
            - bounced
            - complained
          example: subscribed
        created_at:
          type: integer
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````