INRIX Metrics API

The Metrics API from INRIX — 2 operation(s) for metrics.

Operations 2

GET /v1/metrics/intersections/availability #
POST /v1/metrics/intersections #

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/inrix-metrics-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

inrix-metrics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: INRIX Analytics Webservice Template Metrics API
  description: Webservice template to stand up webservices on IQ Backend
tags:
- name: Metrics
paths:
  /v1/metrics/intersections/availability:
    get:
      operationId: intersectionAvailability
      parameters:
      - name: startDate
        in: query
        schema:
          type: string
      - name: endDate
        in: query
        schema:
          type: string
      - name: intersectionOutputMode
        in: query
        schema:
          type: string
      - name: namespaces
        in: query
        schema:
          type: string
      - name: travelTimeType
        in: query
        schema:
          type: string
      requestBody:
        content:
          '*/*':
            schema:
              $ref: '#/components/schemas/UasPrincipalRequired'
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PostMetricResponse'
      security:
      - Bearer Token: []
      tags:
      - Metrics
  /v1/metrics/intersections:
    post:
      operationId: intersectionMetrics
      requestBody:
        content:
          '*/*':
            schema:
              $ref: '#/components/schemas/MetricRequest'
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PostMetricResponse'
      security:
      - Bearer Token: []
      tags:
      - Metrics
components:
  schemas:
    DateRange:
      type: object
      properties:
        startDate:
          type: string
          format: date
        endDate:
          type: string
          format: date
    Metadata:
      type: object
      properties:
        key:
          type: string
        value:
          type: object
        valueList:
          type: boolean
    Crs:
      type: object
      properties:
        type:
          type: string
          enum:
          - name
          - link
        properties:
          type: object
          additionalProperties:
            type: object
    UasPrincipalRequired:
      type: object
      properties:
        accessToken:
          type: string
        userId:
          type: string
          format: uuid
        appId:
          type: string
          format: uuid
        name:
          type: string
        anonymous:
          type: boolean
    PostMetricResponse:
      type: object
      properties:
        createdDate:
          type: string
        responseId:
          type: string
        data:
          $ref: '#/components/schemas/MetricData'
    NamedRangeItem:
      type: object
      properties:
        name:
          type: string
        startAvgControlDelay:
          type: number
          format: double
        endAvgControlDelay:
          type: number
          format: double
    ValueItem:
      type: object
      properties:
        name:
          type: string
        startTime:
          type: string
        endTime:
          type: string
    OrderBy:
      type: object
      properties:
        name:
          type: string
        sortOrder:
          type: string
          enum:
          - ASCENDING
          - DESCENDING
    GeoJsonObject:
      required:
      - type
      type: object
      properties:
        crs:
          $ref: '#/components/schemas/Crs'
        bbox:
          type: array
          items:
            type: number
            format: double
        type:
          type: string
      discriminator:
        propertyName: type
    MetricData:
      type: object
      properties:
        nextCursor:
          type: object
          additionalProperties:
            type: string
        columnHeader:
          $ref: '#/components/schemas/ColumnHeader'
        rows:
          type: array
          items:
            type: array
            items:
              type: string
    ColumnHeaderEntry:
      type: object
      properties:
        name:
          type: string
        type:
          type: string
    ColumnHeader:
      type: object
      properties:
        dimensionHeaderEntries:
          type: array
          items:
            $ref: '#/components/schemas/ColumnHeaderEntry'
        metricHeaderEntries:
          type: array
          items:
            $ref: '#/components/schemas/ColumnHeaderEntry'
    Filter:
      type: object
      properties:
        name:
          type: string
        operator:
          type: string
        not:
          type: boolean
        expressions:
          type: array
          items:
            type: string
    MetricRequest:
      type: object
      properties:
        nextCursor:
          type: object
          additionalProperties:
            type: string
        offset:
          type: integer
          format: int32
        pageSize:
          type: integer
          format: int32
        dateRanges:
          type: array
          items:
            $ref: '#/components/schemas/DateRange'
        geometry:
          $ref: '#/components/schemas/GeoJsonObject'
        dimensions:
          type: array
          items:
            $ref: '#/components/schemas/DimensionItem'
        metrics:
          type: array
          items:
            $ref: '#/components/schemas/MetricItem'
        dimensionFilters:
          type: array
          items:
            $ref: '#/components/schemas/Filter'
        metadata:
          type: array
          items:
            $ref: '#/components/schemas/Metadata'
        orderBys:
          type: array
          items:
            $ref: '#/components/schemas/OrderBy'
        noPaging:
          type: boolean
    DimensionItem:
      type: object
      properties:
        name:
          type: string
        ranges:
          type: array
          items:
            $ref: '#/components/schemas/ValueItem'
    MetricItem:
      type: object
      properties:
        name:
          type: string
        ranges:
          type: array
          items:
            $ref: '#/components/schemas/NamedRangeItem'
  securitySchemes:
    Bearer_Token:
      type: http
      scheme: bearer
      bearerFormat: JWT