openapi: 3.0.1
info:
  title: Galaxy Founder News API
  description: API to fetch the latest news and articles from GalaxyFounder.com
  version: "1.0.0"
servers:
  - url: https://www.galaxyfounder.com
paths:
  /api/news:
    get:
      summary: Get latest news articles
      description: Returns a list of the most recent news articles.
      responses:
        '200':
          description: A list of news articles
          content:
            application/json:
              schema:
                type: object
                properties:
                  articles:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        title:
                          type: string
                        description:
                          type: string
                        url:
                          type: string
                        image_url:
                          type: string
                        published_at:
                          type: string
                          format: date-time