# List Symbol News

Get news on stocks within the past 3 days.

# OpenAPI definition

```json
{
  "info": {
    "title": "Webull Open API Reference",
    "description": "application.yml\\ncom\\ni18n\\nMETA-INF\\nstatic\\n\\r\\n",
    "contact": {
      "name": "",
      "url": "",
      "email": ""
    },
    "version": "2.0",
    "x-logo": {
      "url": "static/png/logo.png"
    }
  },
  "servers": [
    {
      "url": "https://hk-co-branding-openapi.uat.webullbroker.com"
    }
  ],
  "path": "/market-data/news/symbol-news/list",
  "method": "get",
  "tags": [
    "News"
  ],
  "description": "Get news on stocks within the past 3 days.",
  "operationId": "listNewsByTickerUsingGet",
  "parameters": [
    {
      "name": "symbol",
      "in": "query",
      "description": "Security symbol.",
      "required": true,
      "schema": {
        "type": "string"
      },
      "example": "GOOG"
    },
    {
      "name": "category",
      "in": "query",
      "description": "Security category.",
      "required": true,
      "schema": {
        "type": "string"
      },
      "example": "US_STOCK"
    },
    {
      "name": "language",
      "in": "query",
      "description": "News language.",
      "required": true,
      "schema": {
        "type": "string"
      },
      "example": "en"
    },
    {
      "name": "last_news_id",
      "in": "query",
      "description": "The ID of the last data item on the previous page,default 0.",
      "required": false,
      "schema": {
        "type": "integer",
        "format": "int64",
        "default": 0
      },
      "example": 0
    },
    {
      "name": "page_size",
      "in": "query",
      "description": "Number of data per page, default 15.",
      "required": false,
      "schema": {
        "type": "integer",
        "format": "int32",
        "default": 10
      },
      "example": 10
    },
    {
      "name": "access_token",
      "in": "header",
      "description": "User's authenticated token.",
      "required": true,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "reqid",
      "in": "header",
      "description": "The unique ID for this request. Suggest using UUID.",
      "schema": {
        "type": "string"
      },
      "example": "2e46d5a4-bef9-4507-8cda-98f85d2f770c"
    }
  ],
  "responses": {
    "200": {
      "description": "OK",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "id": {
                "type": "integer",
                "description": "News id",
                "format": "int64",
                "example": 10739820929238016
              },
              "title": {
                "type": "string",
                "description": "News title",
                "example": "Apple Store Workers In Maryland Vote In Favor Of Strike Over Working Conditions"
              },
              "source_name": {
                "type": "string",
                "description": "News publish source",
                "example": "Benzinga"
              },
              "news_time": {
                "type": "string",
                "description": "News publish time",
                "format": "date-time"
              },
              "news_url": {
                "type": "string",
                "description": "News link",
                "example": "https://pre-news.webullbroker.com/us/news-html/20240513/10739820929238016.html"
              },
              "thumbnail": {
                "type": "string",
                "description": "News thumbnail",
                "example": "https://news-static.webullfintech.com/us/news-pic/20260107/14163175251215360.jpg"
              }
            },
            "description": "News data response object",
            "title": "NewsVO"
          }
        }
      }
    }
  },
  "postman": {
    "name": "List Symbol News",
    "description": {
      "content": "Get news on stocks within the past 3 days.",
      "type": "text/plain"
    },
    "url": {
      "path": [
        "market-data",
        "news",
        "symbol-news",
        "list"
      ],
      "host": [
        "{{baseUrl}}"
      ],
      "query": [
        {
          "disabled": false,
          "description": {
            "content": "(Required) Security symbol.",
            "type": "text/plain"
          },
          "key": "symbol",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "(Required) Security category.",
            "type": "text/plain"
          },
          "key": "category",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "(Required) News language.",
            "type": "text/plain"
          },
          "key": "language",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "The ID of the last data item on the previous page,default 0.",
            "type": "text/plain"
          },
          "key": "last_news_id",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "Number of data per page, default 15.",
            "type": "text/plain"
          },
          "key": "page_size",
          "value": ""
        }
      ],
      "variable": []
    },
    "header": [
      {
        "disabled": false,
        "description": {
          "content": "(Required) User's authenticated token.",
          "type": "text/plain"
        },
        "key": "access_token",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "The unique ID for this request. Suggest using UUID.",
          "type": "text/plain"
        },
        "key": "reqid",
        "value": ""
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "method": "GET"
  }
}
```
