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

# Get user risk profile



## OpenAPI

````yaml openapi/transactions.yaml get /transactions/users/{id}/profile
openapi: 3.0.3
info:
  title: TXCloud TransactionGuard API
  version: 1.0.0
  description: |
    Real-time transaction risk scoring to prevent payment fraud.
    Analyzes transaction patterns, user behavior, and recipient risk.
servers:
  - url: https://api.txcloud.io/v1
  - url: https://sandbox.api.txcloud.io/v1
security:
  - BearerAuth: []
tags:
  - name: Scoring
    description: Real-time transaction scoring
  - name: Transactions
    description: Transaction management
  - name: Users
    description: User risk profiles
  - name: Recipients
    description: Recipient/merchant intelligence
  - name: Rules
    description: Transaction rules
  - name: Analytics
    description: Transaction analytics
paths:
  /transactions/users/{id}/profile:
    get:
      tags:
        - Users
      summary: Get user risk profile
      operationId: getUserProfile
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: User profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserProfile'
components:
  schemas:
    UserProfile:
      type: object
      properties:
        user_id:
          type: string
        trust_level:
          type: string
        trust_score:
          type: integer
        statistics:
          type: object
        patterns:
          type: object
        risk_factors:
          type: object
        known_recipients:
          type: array
          items:
            type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````