TPS Engage Prefetch API

The Prefetch API from TPS Engage — 1 operation(s) for prefetch.

Operations 1

GET /prefetch/{deviceId} Prefetch Media

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/tps-engage-prefetch-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

tps-engage-prefetch-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Blindspot Pull Play Prefetch API
  version: 1.0.0
  description: 'The Blindspot Pull API provides two main endpoints to interact with the service:

    1. Play - To retrieve media playback information.

    2. Prefetch Media - To retrieve media in advance based on the device ID.

    '
servers:
- url: https://rtb.network.tpsengage.com/api/{apiPublisher}
  variables:
    apiPublisher:
      default: sv
      description: The API publisher identifier
tags:
- name: Prefetch
paths:
  /prefetch/{deviceId}:
    get:
      summary: Prefetch Media
      description: Retrieves the media information for preloading purposes based on the device ID.
      parameters:
      - in: path
        name: deviceId
        required: true
        schema:
          type: string
        description: A unique identifier for the device.
        example: 77276c2f-726a-4d6c-aa87-29041d47419d
      responses:
        '200':
          description: Successful response with media information for prefetching
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrefetchResponse'
              examples:
                withContent:
                  summary: Response with prefetch content
                  value:
                  - creativeId: 170254d6-2d89-45db-8613-03fd1efac643
                    creativeUrl: https://storage.googleapis.com/engage-transcoded-videos/170254d6-2d89-45db-8613-03fd1efac643.mp4
                noContent:
                  summary: Response with no prefetch content
                  value: []
        '404':
          description: Device ID not found
      tags:
      - Prefetch
components:
  schemas:
    PrefetchResponse:
      type: array
      items:
        type: object
        properties:
          creativeId:
            type: string
          creativeUrl:
            type: string