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

# Get Location Reviews Metrics



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json get /api/v1/local-seo/locations/{location_id}/analytics/reviews
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/local-seo/locations/{location_id}/analytics/reviews:
    get:
      tags:
        - Location Analytics
      summary: Get Location Reviews Metrics
      operationId: >-
        get_location_reviews_metrics_api_v1_local_seo_locations__location_id__analytics_reviews_get
      parameters:
        - name: location_id
          in: path
          required: true
          schema:
            type: string
            title: Location Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocationReputationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    LocationReputationResponse:
      properties:
        average_rating:
          type: number
          title: Average Rating
          description: Average star rating (1.0 - 5.0)
        total_reviews_count:
          type: integer
          title: Total Reviews Count
          description: Total count of reviews
        total_replied_count:
          type: integer
          title: Total Replied Count
          description: Total replies to reviews across all time
        reply_rate_pct:
          type: number
          title: Reply Rate Pct
          description: Percentage of reviews with a reply (global)
      type: object
      required:
        - average_rating
        - total_reviews_count
        - total_replied_count
        - reply_rate_pct
      title: LocationReputationResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````