> ## 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 Insight

> Retrieve social media and reputation insights for an email address.



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v2/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: Compliance
    description: Compliance verification endpoints
  - name: Government Data
    description: Government data verification endpoints
paths:
  /api/v2/email-social:
    post:
      tags:
        - Alternative Verifications
      summary: Email Social Insight
      description: Retrieve social media and reputation insights for an email address.
      operationId: emailSocialInsight
      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/EmailSocialInsightRequest'
            examples:
              default:
                summary: Email social insight request
                value:
                  email: <string>
                  email_address: <string>
                  template_id: '{your_trust_flow_id}'
                  verification_id: '{your_created_verification_id}'
      responses:
        '200':
          description: Email social insight completed successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSocialInsightResponse'
              example:
                status: VERIFIED
                message: OK
                result:
                  code: OK
                  message: Success!
                  requestId: 23bbcd80-e007-46c2-af41-3e2dfd5eb52e
                  data:
                    id: fp-e4fe40826a12412eb4e8a847e8e5840f
                    createdAt: '2026-04-23T02:00:35Z'
                    status: COMPLETED
                    resultCode: SUCCESS
                    resultMessage: null
                    requestMeta:
                      templateId: tpl-ftp005001
                      emailAddress: farahsaffiah08@gmail.com
                      countryCode: PH
                      footprintItemsTimeout: null
                      consent:
                        type: IDmeta Phone Number & Email Footprint Consent
                        version: v1
                        consentedAt: '2026-04-23T09:00:35Z'
                        consentedWith: By Starting
                        consentTemplateId: ct-e09587eec0b548668e38bdf1a729952d
                    items:
                      - name: registered
                        value: 'true'
                        valueType: BOOLEAN
                      - name: creationTime
                        value: '1995-08-13 00:00:00'
                        valueType: STRING
                      - name: registrarName
                        value: MarkMonitor; Inc.
                        valueType: STRING
                      - name: companyName
                        value: null
                        valueType: STRING
                      - name: isFreeWebmail
                        value: 'true'
                        valueType: BOOLEAN
                      - name: deliverable
                        value: 'true'
                        valueType: BOOLEAN
                      - name: disposable
                        value: 'false'
                        valueType: BOOLEAN
                      - name: tenure
                        value: '7.39'
                        valueType: NUMBER
                      - name: breached
                        value: 'true'
                        valueType: BOOLEAN
                      - name: breachCount
                        value: '2'
                        valueType: NUMBER
                      - name: firstBreachDate
                        value: '2018-12-01'
                        valueType: STRING
                      - name: lastBreachDate
                        value: '2020-06-29'
                        valueType: STRING
                risk_rating: LOW
components:
  schemas:
    EmailSocialInsightRequest:
      type: object
      required:
        - email
        - template_id
        - verification_id
      properties:
        email:
          type: string
          format: email
          description: Email address to be analyzed for social insights.
        email_address:
          type: string
          description: Alternate email address for analysis when applicable.
        template_id:
          type: string
          description: >-
            Identifier used to categorize or group requests for tracking or
            reporting.
        verification_id:
          type: string
          description: A unique ID used to identify your verification request.
    EmailSocialInsightResponse:
      type: object
      properties:
        status:
          oneOf:
            - type: boolean
            - type: string
        message:
          type: string
        result:
          type: object
          additionalProperties: true
        risk_rating:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````