Skip to main content
GET
/
ecosystem
/
updates
/
news-article
Get news articles
curl --request GET \
  --url https://ctechnology.io/api/v2.2/ecosystem/updates/news-article \
  --header 'Authorization: <api-key>'
{
  "header": {
    "num_results": 123,
    "api_version": "<string>",
    "status": "<string>",
    "message": "<string>",
    "permission_via": [
      {
        "permission": "<string>",
        "via": "me",
        "organization_id": "<string>"
      }
    ],
    "offset": 123,
    "limit": 123
  },
  "data": [
    {
      "id": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "title": "<string>",
      "content": "<string>",
      "organization_id": "<string>",
      "organization_name": "<string>",
      "image_id": "<string>",
      "image_url": "<string>",
      "title_i18n": {},
      "content_i18n": {},
      "tags": [
        "<string>"
      ],
      "online": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Note that the API key has to be sent as Token 123 where 123 is the key you received after logging in or by creating on the developer dashboard.

Query Parameters

to
string<date-time>

Up until when to get the news articles.

limit
number

The number of news articles to return.

Response

Successful retrieval of news articles a user has access to.

header
API Header Paginated · object
required

Default header sent along with multi-resource responses (lists of resources).

data
News Article · object[]
required