DexCare Omni Search Analytics API

The OmniSearchAnalytics API from DexCare — 1 operation(s) for omnisearchanalytics.

Operations 1

GET /api/OmniSearchAnalytics Omni Search Analytics #

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/dexcare-omnisearchanalytics-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

dexcare-omnisearchanalytics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Omni Search Analytics API
  description: API specification for Omni's endpoints. Fast Pages Entities Schema Version - (4.2.2)
  version: 2.21.0
  license:
    name: None
    url: None
servers:
- url: https://dev${brand}omni.azurewebsites.net
  description: Dev Server
- url: https://qa${brand}omni.azurewebsites.net
  description: QA Server
- url: https://uat${brand}omni.azurewebsites.net
  description: Test Server
- url: https://${brand}omni.azurewebsites.net
  description: Prod Server
security:
- {}
tags:
- name: OmniSearchAnalytics
paths:
  /api/OmniSearchAnalytics:
    get:
      operationId: Search_Analytics
      summary: Omni Search Analytics
      description: Proxy for Google Analytics (GA) collect endpoint, specifically for search page view events.
      parameters:
      - $ref: '#/components/parameters/BrandParam'
      - name: cid
        in: query
        required: true
        schema:
          $ref: '#/components/schemas/properties-cid'
      - name: debug
        in: query
        schema:
          $ref: '#/components/schemas/debug'
      - name: dp
        in: query
        schema:
          $ref: '#/components/schemas/dp'
      - name: path
        in: query
        schema:
          $ref: '#/components/schemas/path'
      - name: tid
        in: query
        schema:
          $ref: '#/components/schemas/tid'
      responses:
        '200':
          description: Successful search analytics results.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OmniSearchAnalyticsSuccessResponse'
        '400':
          description: Invalid request parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        default:
          description: Death waits for the slightest lapse in concentration.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      tags:
      - OmniSearchAnalytics
components:
  schemas:
    debug:
      default: false
      description: Set to true to include debug information in the response.
      type: boolean
    ErrorResponse:
      description: Error response
      properties:
        error:
          description: Reason for the failure.
          type: string
        errorData:
          description: (Optional) Additional error details, if available.
      type: object
      required:
      - error
    OmniSearchAnalyticsSuccessResponse:
      properties:
        cid:
          type: string
        ga:
          additionalProperties: true
          description: 'Raw response data from GA.

            This is only included in the response when param `debug=true` is set, but never in production.'
          properties: {}
          type: object
        url:
          description: 'The final generated GA request URL.

            This is only included in the response when param `debug=true` is set, but never in production.'
          type: string
      required:
      - cid
      type: object
    path:
      description: Document path, i.e. the path portion of the page URL. Either 'path' or 'dp' must be specified.
      type: string
    tid:
      default: UA-1508202-16
      description: GA tracking ID. Defaults to UA-1508202-16 if not defined.
      type: string
    properties-cid:
      description: Client ID (unique user ID).
      type: string
    dp:
      description: Namespace. Either 'path' or 'dp' must be specified.
      type: string
  parameters:
    BrandParam:
      name: brand
      in: query
      required: true
      description: (Required) - The brand to lookup results for. The results must exist in that brand's index, or they will be treated as though they don't exist.
      schema:
        type: string