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

# Email Social Insights

> Gather social footprint intelligence for an email address, including platform registration signals across email providers, ecommerce, messaging, and social media.



## OpenAPI

````yaml api-reference/openapi.json POST /api/v3/verifications/email-social
openapi: 3.0.3
info:
  title: IDmeta API
  description: IDmeta verification and integration API.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://{environment-subdomain}.idmetagroup.com
    description: Your environment (replace `{environment-subdomain}`)
    variables:
      environment-subdomain:
        default: integrate
        description: IDmeta environment subdomain
security:
  - bearerAuth: []
tags:
  - name: Processes
    description: Verification process endpoints
  - name: Trust Flow Links
    description: Trust Flow link generation endpoints
  - name: Compliance
    description: Compliance verification endpoints
  - name: Government Data
    description: Government data verification endpoints
  - name: Alternative Verifications
    description: Alternative verification and intelligence endpoints
  - name: OCR
    description: Document OCR extraction endpoints
paths:
  /api/v3/verifications/email-social:
    post:
      tags:
        - Alternative Verifications
      summary: Email Social Insights
      description: >-
        Returns social footprint intelligence for an email address, including
        platform registration signals across categories such as email providers,
        ecommerce, messaging, and social media. Powered by the Monnai
        `EMAIL_SOCIAL` insight package.


        Provide `email`, `trustFlowId`, and `trustValidationId`. The response is
        returned under `data.social` with `summary` and `categories`. IDmeta
        does not require `country_code`, `eventType`, `cleansingFlag`, or
        `consentDetails` for this endpoint.
      operationId: emailSocialInsightsV3
      parameters:
        - name: Accept
          in: header
          required: false
          schema:
            type: string
            default: application/json
        - name: Content-Type
          in: header
          required: false
          schema:
            type: string
            default: application/json
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailSocialInsightsRequest'
            examples:
              default:
                summary: Email social insights request
                value:
                  email: <string>
                  trustFlowId: 0
                  trustValidationId: '{your_trust_validation_id}'
      responses:
        '200':
          description: Email social insights completed successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSocialInsightsResponse'
              example:
                success: true
                message: Email social verification processed successfully
                data:
                  social:
                    summary:
                      profilesRegistered: 11
                      namesFound: 0
                      photosFound: 1
                      profilesChecked: 46
                      registeredMerchantProfiles: 2
                      registeredGamingProfiles: 0
                      digitalFootprintDiversity: 5
                    categories:
                      CONSUMERELECTRONICS:
                        global:
                          notRegistered:
                            - apple
                            - samsung
                      EMAILPROVIDER:
                        global:
                          registered:
                            - google
                          notRegistered:
                            - yahoo
                          profileDetails:
                            google:
                              photo: <string>
                      MESSAGING:
                        global:
                          notRegistered:
                            - kommo
                      PROFESSIONAL:
                        global:
                          registered:
                            - github
                            - zoho
                            - adobe
                          notRegistered:
                            - hubspot
                            - codecademy
                            - dropbox
                            - replit
                            - firefox
                            - treehouse
                            - trello
                        local:
                          notRegistered:
                            - insightly
                      ENTERTAINMENT:
                        global:
                          registered:
                            - spotify
                          notRegistered:
                            - vimeo
                            - ea
                      TRAVEL:
                        global:
                          notRegistered:
                            - trivago
                      FINANCIAL:
                        local:
                          notRegistered:
                            - zapper
                      EDUCATION:
                        global:
                          notRegistered:
                            - duolingo
                            - ted
                            - babbel
                            - edx
                        local:
                          notRegistered:
                            - coursera
                      LIFESTYLE:
                        global:
                          notRegistered:
                            - komoot
                            - bodybuilding
                      VPN:
                        global:
                          notRegistered:
                            - airvpn
                      MERCHANT:
                        global:
                          registered:
                            - zohoMerchant
                            - woocommerceMerchant
                          notRegistered:
                            - zapierMerchant
                      GAMING:
                        global:
                          notRegistered:
                            - chess
                            - kahoot
                verificationStatus: VERIFIED
                verificationStatusCode: 3
                trustFlowId: 0
                trustValidationId: '{your_trust_validation_id}'
                verificationType: email_social
                metadata: null
                createdAt: <string>
components:
  schemas:
    EmailSocialInsightsRequest:
      type: object
      required:
        - email
        - trustFlowId
        - trustValidationId
      properties:
        email:
          type: string
          format: email
          description: Email address to analyze.
        trustFlowId:
          type: integer
          description: Trust flow ID used when you created the trust validation.
        trustValidationId:
          type: string
          description: Trust validation ID returned from create trust validation.
    EmailSocialInsightsResponse:
      type: object
      required:
        - success
        - message
        - data
        - verificationStatus
        - verificationStatusCode
        - trustFlowId
        - trustValidationId
        - verificationType
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          description: Email social intelligence returned for the submitted address.
          properties:
            social:
              type: object
              additionalProperties: true
              description: Social footprint summary and platform category signals.
        verificationStatus:
          type: string
        verificationStatusCode:
          type: integer
        trustFlowId:
          type: integer
        trustValidationId:
          type: string
        verificationType:
          type: string
        metadata:
          nullable: true
        createdAt:
          type: string
          description: Timestamp when the verification was created.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````