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

# Get database freshness status

> Returns the last pipeline run time (approximated by latest strain update), the most recent strain update timestamp, and the count of strains refreshed in the last 24 hours. Used for "Live research" trust badges and SEO recency indicators.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/meta/refresh-status
openapi: 3.1.0
info:
  title: High IQ API
  description: Cannabis intelligence API powering the High IQ mobile app and TIWIH website
  version: 1.0.0
servers:
  - url: https://api.thisiswhyimhigh.com
    description: Production
  - url: http://localhost:3001
    description: Local Development
security: []
tags:
  - name: Strains
    description: Strain database search, filtering, and retrieval
  - name: Scanner
    description: Cannabis label scanning with AI vision
  - name: Receipts
    description: Receipt parsing with AI
  - name: Notebooks
    description: AI-generated notebook streaming (SSE)
  - name: Discover
    description: High Families and curated highlight lists
  - name: Blog
    description: Blog article listing and retrieval
  - name: Research
    description: Research articles and menu extraction
  - name: Research Papers
    description: Cannabis research paper database
  - name: Deep Research
    description: AI-powered deep cannabis research
  - name: Meta
    description: System metadata and freshness signals
  - name: Chat
    description: Professor High AI cannabis assistant
  - name: Dispensaries
    description: Dispensary metadata such as crowdsourced email domains
  - name: Hero Images
    description: AI hero image generation and management for landing/content pages
  - name: Mascot
    description: Professor High mascot image generation and status (admin)
  - name: Shopping
    description: Dispensary shopping menus, scans, and strain matching
  - name: Social
    description: Social content drafts and stats for Professor High channels
  - name: App Landing
    description: High IQ app landing page content and configuration
paths:
  /api/v1/meta/refresh-status:
    get:
      tags:
        - Meta
      summary: Get database freshness status
      description: >-
        Returns the last pipeline run time (approximated by latest strain
        update), the most recent strain update timestamp, and the count of
        strains refreshed in the last 24 hours. Used for "Live research" trust
        badges and SEO recency indicators.
      operationId: getApiV1MetaRefreshStatus
      responses:
        '200':
          description: >-
            Refresh status (lastRunAt, lastStrainUpdatedAt,
            strainsRefreshedLast24h)
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    const: true
                  data: {}
                  meta:
                    type: object
                    properties:
                      pagination:
                        type: object
                        properties:
                          limit:
                            type: integer
                            minimum: -9007199254740991
                            maximum: 9007199254740991
                          offset:
                            type: integer
                            minimum: -9007199254740991
                            maximum: 9007199254740991
                          total:
                            type: integer
                            minimum: -9007199254740991
                            maximum: 9007199254740991
                          hasMore:
                            type: boolean
                        required:
                          - limit
                          - offset
                          - total
                      timestamp:
                        type: string
                        format: date-time
                        pattern: >-
                          ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
                      requestId:
                        type: string
                    additionalProperties: {}
                required:
                  - success
                  - data
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    const: false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      stack:
                        type: string
                    required:
                      - code
                      - message
                  meta:
                    type: object
                    properties:
                      timestamp:
                        type: string
                        format: date-time
                        pattern: >-
                          ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
                      requestId:
                        type: string
                      path:
                        type: string
                      method:
                        type: string
                required:
                  - success
                  - error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    const: false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      stack:
                        type: string
                    required:
                      - code
                      - message
                  meta:
                    type: object
                    properties:
                      timestamp:
                        type: string
                        format: date-time
                        pattern: >-
                          ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
                      requestId:
                        type: string
                      path:
                        type: string
                      method:
                        type: string
                required:
                  - success
                  - error

````