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

# Get unified mobile identity trust score

> Aggregates network, device, verification, and behavioral signals into a single 0–100 trust score with a business-friendly recommendation.



## OpenAPI

````yaml /openapi.json post /v1/api/trust/score
openapi: 3.1.0
info:
  title: Authmatech API
  description: API Documentation
  version: '1.0'
servers:
  - url: http://service.authmatech.com
    description: Generated server url
security:
  - ApiKey: []
paths:
  /v1/api/trust/score:
    post:
      tags:
        - Authmatech Trust — Unified Identity Trust Score
      summary: Get unified mobile identity trust score
      description: >-
        Aggregates network, device, verification, and behavioral signals into a
        single 0–100 trust score with a business-friendly recommendation.
      operationId: score
      parameters:
        - name: X-CLIENT-ID
          in: header
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TrustScoreBody'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Response'
components:
  schemas:
    TrustScoreBody:
      type: object
      properties:
        mobileNumber:
          type: string
        metadataId:
          type: string
        sessionId:
          type: string
        device:
          $ref: '#/components/schemas/DeviceSignal'
        network:
          $ref: '#/components/schemas/NetworkSignal'
    Response:
      type: object
    DeviceSignal:
      type: object
      properties:
        platform:
          type: string
        osVersion:
          type: string
        model:
          type: string
        appVersion:
          type: string
        sdkVersion:
          type: string
        isRooted:
          type: boolean
        isEmulator:
          type: boolean
        vpnDetected:
          type: boolean
        proxyDetected:
          type: boolean
        appIntegrityStatus:
          type: string
        deviceId:
          type: string
    NetworkSignal:
      type: object
      properties:
        ipAddress:
          type: string
        countryCode:
          type: string
        operator:
          type: string
        connectionType:
          type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: X-API-KEY
      in: header

````