NewTqnia | Technology News, AI and Innovation News API

The News API from NewTqnia | Technology News, AI and Innovation — 2 operation(s) for news.

Operations 2

GET /v1/news/today Get articles published today using the Asia/Dubai day boundary #
GET /v1/news/latest Get the latest published articles #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/newtqnia-news-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

newtqnia-news-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Newtqnia News API
  version: 1.1.0
  contact:
    name: NewTqnia
    url: https://newtqnia.com/en/contact
  termsOfService: https://newtqnia.com/en/terms
  description: 'Operations tagged News across 2 of this provider''s published API definitions: newtqnia-daily-digest-api.yaml, newtqnia-daily-digest-api.yaml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.newtqnia.com
  description: Canonical API endpoint
- url: https://newtqnia.com
  description: Legacy compatibility endpoint
tags:
- name: News
paths:
  /v1/news/today:
    get:
      operationId: getTodaysNews
      summary: Get articles published today using the Asia/Dubai day boundary
      parameters:
      - $ref: '#/components/parameters/Locale'
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Category'
      - $ref: '#/components/parameters/ApiKey'
      - $ref: '#/components/parameters/Application'
      - $ref: '#/components/parameters/Website'
      responses:
        '200':
          description: Today's localized digest
          headers:
            ETag:
              $ref: '#/components/headers/ETag'
            Cache-Control:
              $ref: '#/components/headers/CacheControl'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Digest'
        '304':
          description: Not modified
        '429':
          description: Rate limit exceeded
      tags:
      - News
    servers:
    - url: https://api.newtqnia.com
      description: Canonical API endpoint
    - url: https://newtqnia.com
      description: Legacy compatibility endpoint
  /v1/news/latest:
    get:
      operationId: getLatestNews
      summary: Get the latest published articles
      parameters:
      - $ref: '#/components/parameters/Locale'
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Category'
      - $ref: '#/components/parameters/ApiKey'
      - $ref: '#/components/parameters/Application'
      - $ref: '#/components/parameters/Website'
      responses:
        '200':
          description: Latest localized articles
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Digest'
        '304':
          description: Not modified
        '429':
          description: Rate limit exceeded
      tags:
      - News
    servers:
    - url: https://api.newtqnia.com
      description: Canonical API endpoint
    - url: https://newtqnia.com
      description: Legacy compatibility endpoint
components:
  headers:
    ETag:
      schema:
        type: string
      description: Validator for conditional requests using If-None-Match.
    CacheControl:
      schema:
        type: string
      description: Public caching instructions.
  parameters:
    Locale:
      name: locale
      in: query
      schema:
        type: string
        enum:
        - en
        - ar
        default: en
    Category:
      name: category
      in: query
      schema:
        type: string
      description: Optional category slug.
    Limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 10
        default: 10
    Application:
      name: X-NewTqnia-Application
      in: header
      required: false
      schema:
        type: string
        maxLength: 120
      description: Optional caller application name for usage attribution.
    ApiKey:
      name: X-API-Key
      in: header
      required: false
      schema:
        type: string
      description: Optional traffic identifier. Public endpoints remain accessible without a key.
    Website:
      name: X-NewTqnia-Website
      in: header
      required: false
      schema:
        type: string
        format: uri
      description: Optional public website origin. It is verified only when associated with a recognized key.
  schemas:
    LinkLabel:
      type: object
      required:
      - name
      - url
      properties:
        name:
          type: string
        url:
          type: string
          format: uri
    Article:
      type: object
      required:
      - id
      - title
      - summary
      - category
      - image
      - url
      - published_at
      - read_time
      properties:
        id:
          type: integer
        title:
          type: string
        summary:
          type: string
        category:
          type: object
          required:
          - slug
          - name
          properties:
            slug:
              type: string
            name:
              type: string
        image:
          type: string
          format: uri
        url:
          type: string
          format: uri
        published_at:
          type: string
          format: date-time
        read_time:
          type: integer
          minimum: 1
    Digest:
      type: object
      required:
      - api_version
      - collection
      - timezone
      - locale
      - direction
      - publisher
      - attribution
      - generated_at
      - articles
      - _links
      properties:
        api_version:
          type: string
          const: v1
        collection:
          type: string
          enum:
          - today
          - latest
        date:
          type: string
          format: date
        timezone:
          type: string
          const: Asia/Dubai
        locale:
          type: string
          enum:
          - en
          - ar
        direction:
          type: string
          enum:
          - ltr
          - rtl
        publisher:
          $ref: '#/components/schemas/LinkLabel'
        attribution:
          type: object
          required:
          - text
          - url
          - required
          properties:
            text:
              type: string
            url:
              type: string
              format: uri
            required:
              type: boolean
        generated_at:
          type: string
          format: date-time
        articles:
          type: array
          items:
            $ref: '#/components/schemas/Article'
        _links:
          type: object
          additionalProperties:
            type: string
            format: uri
x-refined-from:
- newtqnia-daily-digest-api.yaml
- newtqnia-daily-digest-api.yaml