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

# Get Client Data

> Returns the JSON document stored under a key for your company.

Returns the JSON document stored under a key for your company.

The `data` field is the document exactly as last pushed with
[Push Client Data](/api-reference/client-data/push); `updated_at` is when that
push happened. Returns 404 when no document has been pushed under the key.

Keys must match `^[a-z0-9][a-z0-9_-]{0,127}$`: they start with a lowercase
letter or digit and contain only lowercase letters, digits, hyphens, and
underscores, up to 128 characters. A key outside that format returns 422
rather than 404, so a 422 means the key itself is malformed, not that the
document is missing.

<RequestExample>
  ```bash cURL theme={null}
  curl 'https://app.reddy.io/api/v1/client-data/app-settings' \
    -H 'Authorization: Bearer your_api_key'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": {
      "timezone": "America/New_York",
      "locale": "en-US",
      "notifications_enabled": true
    },
    "updated_at": "2026-08-04T14:05:00Z"
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/client-data/{key}
openapi: 3.1.0
info:
  title: Reddy API
  version: 1.0.0
  description: ''
servers: []
security: []
paths:
  /api/v1/client-data/{key}:
    get:
      tags:
        - Client Data
      summary: Get Client Data
      description: |-
        Returns the JSON document stored under a key for your company.

        The `data` field is the document exactly as last pushed with
        `PUT /client-data/{key}`; `updated_at` is when that push happened.
      operationId: api_standard_api_client_data_get_client_data
      parameters:
        - name: key
          in: path
          required: true
          description: >-
            Document key must start with a lowercase letter or digit and contain
            only lowercase letters, digits, hyphens, and underscores (1-128
            characters).
          schema:
            type: string
            pattern: ^[a-z0-9][a-z0-9_-]{0,127}$
            maxLength: 128
            minLength: 1
            examples:
              - app-settings
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DocumentResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - AuthBearer: []
components:
  schemas:
    DocumentResponse:
      properties:
        data:
          anyOf:
            - additionalProperties: true
              type: object
            - items: {}
              type: array
          description: The JSON document exactly as last pushed
          title: Data
        updated_at:
          description: Server timestamp of the last push (UTC ISO 8601)
          format: date-time
          title: Updated At
          type: string
      required:
        - data
        - updated_at
      title: DocumentResponse
      type: object
    ErrorResponse:
      properties:
        error:
          title: Error
          type: string
      required:
        - error
      title: ErrorResponse
      type: object
  securitySchemes:
    AuthBearer:
      type: http
      scheme: bearer

````