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

# Read count (text)

Return the current hit count as plain text.

Example

```bash theme={null}
curl "https://<deployment>/count.txt?id=home"
```


## OpenAPI

````yaml GET /count.txt
openapi: 3.0.3
info:
  title: nums API
  version: 1.0.0
  description: Simple hit counter and badge service.
servers:
  - url: https://nums.advay.ca
security: []
paths:
  /count.txt:
    get:
      summary: Get current count (plain text)
      parameters:
        - in: query
          name: id
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: string
                example: '73'

````