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

# Get account features

> Get enabled features for the authenticated client including scoring types and enrichment workflows. Returns information about available features based on the client's subscription plan.



## OpenAPI

````yaml /api-reference/openapi.json get /api/public/v2/account/features
openapi: 3.1.0
info:
  version: 2.0.0
  title: TitanX API
  description: |-
    # TitanX API Documentation

    Welcome to the TitanX API!

    ## Base URL

    ```
    https://app.titanx.io/api/public/v2
    ```

    ## Authentication

    All endpoints require Bearer token authentication:

    ```http
    Authorization: Bearer YOUR_API_KEY
    ```

    ## Response Format

    All endpoints return responses in this consistent format:

    ```json
    {
      "data": { /* Your requested data */ },
      "credits": {
        "creditsCharged": 5,
        "creditsRemaining": 995,
        "costPerPhone": 0.05,
        "phoneCount": 100
      },
      "error": null
    }
    ```
servers:
  - url: https://app.titanx.io
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: v2
    description: ✅ Version 2 API (Current)
    externalDocs:
      description: V2 API Guide
      url: https://docs.titanx.io/api/v2
  - name: v2-contacts
    description: V2 Contact operations - scoring and enrichment with credit tracking
  - name: v2-jobs
    description: V2 Job operations - job management and contact retrieval
  - name: v2-account
    description: V2 Account operations - credits and billing information
  - name: v2-webhooks
    description: >-
      V2 Webhook operations - manage webhook subscriptions for real-time contact
      event notifications
paths:
  /api/public/v2/account/features:
    get:
      tags:
        - v2
        - v2-account
      summary: Get account features
      description: >-
        Get enabled features for the authenticated client including scoring
        types and enrichment workflows. Returns information about available
        features based on the client's subscription plan.
      responses:
        '200':
          description: Successful response with account features information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V2AccountFeaturesResponse'
        '404':
          description: Client not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
      security:
        - bearerAuth: []
components:
  schemas:
    V2AccountFeaturesResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AccountFeaturesResponse'
      required:
        - data
    AccountFeaturesResponse:
      type: object
      properties:
        apiAccess:
          type: boolean
        features:
          type: object
          properties:
            lightningScoring:
              type: boolean
            titanScoring:
              type: boolean
            enrichmentWithLightning:
              type: boolean
            enrichmentWithTitan:
              type: boolean
          required:
            - lightningScoring
            - titanScoring
            - enrichmentWithLightning
            - enrichmentWithTitan
      required:
        - apiAccess
        - features
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````