APITube Utilities API

Helper endpoints for building queries

Operations 1

GET /v1/suggest/entities Autocomplete entity search #

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/apitube-utilities-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

apitube-utilities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: APITube News Utilities API
  description: Real-time news API providing access to articles from 500,000+ verified sources worldwide in 60+ languages. Supports full-text search, sentiment analysis, entity recognition, and advanced filtering.
  version: 1.0.0
  contact:
    name: APITube Support
    url: https://apitube.io/contact
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  x-logo:
    url: https://apitube.io/images/logo.svg
servers:
- url: https://api.apitube.io
  description: Production API server
security:
- ApiKeyHeader: []
- ApiKeyQuery: []
tags:
- name: Utilities
  description: Helper endpoints for building queries
paths:
  /v1/suggest/entities:
    get:
      summary: Autocomplete entity search
      description: Search for entity IDs (people, organizations, brands, locations) by name. Use to resolve entity names to IDs before filtering news results.
      operationId: suggestEntities
      tags:
      - Utilities
      parameters:
      - name: api_key
        in: query
        description: Your API key (alternative to X-API-Key header)
        required: false
        schema:
          type: string
      - name: q
        in: query
        description: Search query string for entity name autocomplete.
        required: true
        schema:
          type: string
        example: Apple
      - name: type
        in: query
        description: Filter suggestions by entity type.
        required: false
        schema:
          type: string
          enum:
          - human
          - organization
          - brand
          - location
      responses:
        '200':
          description: List of matching entities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntitySuggestResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    EntitySuggestResponse:
      type: object
      properties:
        status:
          type: string
          example: ok
        results:
          type: array
          items:
            type: object
            properties:
              id:
                type: integer
              name:
                type: string
              type:
                type: string
                enum:
                - human
                - organization
                - brand
                - location
    ErrorResponse:
      type: object
      required:
      - status
      - code
      - message
      properties:
        status:
          type: integer
          description: HTTP status code
        code:
          type: string
          description: Machine-readable error identifier
        message:
          type: string
          description: Human-readable error description
        links:
          type: object
          properties:
            about:
              type: string
              description: Documentation URL for this error
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            status: 401
            code: unauthorized
            message: Invalid or missing API key. Provide it via X-API-Key header or api_key query parameter.
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key passed as a request header
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key
      description: API key passed as a query parameter
externalDocs:
  description: Full APITube documentation
  url: https://docs.apitube.io