INRIX API

The api API from INRIX — 3 operation(s) for api.

Operations 3

GET /api/caniparkhere/ #
GET /api/openspots/events/ #
GET /api/openspots/events/{pk_event}/ #

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-api-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-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: INRIX Parkme API
  description: INRIX Parkme Web Service API
  contact:
    email: support@inrix.com
  version: v1
servers:
- url: https://parking-api.inrix.com/
security:
- Basic: []
tags:
- name: api
paths:
  /api/caniparkhere/:
    parameters: []
    get:
      operationId: api_caniparkhere_list
      description: 'given a coordinate finds the nearest segments and computes which rate is currently active and attaches additional

        data to json response.'
      responses:
        '200':
          description: ''
      tags:
      - api
  /api/openspots/events/:
    parameters: []
    get:
      operationId: api_openspots_events_list
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OpenParkEvent'
      tags:
      - api
  /api/openspots/events/{pk_event}/:
    parameters:
    - name: pk_event
      in: path
      description: A unique value identifying this open park event.
      required: true
      schema:
        type: string
    get:
      operationId: api_openspots_events_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenParkEvent'
      tags:
      - api
components:
  schemas:
    OpenParkEvent:
      required:
      - ts
      type: object
      properties:
        ts:
          title: Ts
          type: string
          format: date-time
        polyline:
          title: Polyline
          type: string
          readOnly: true
        quadkey17:
          title: Quadkey17
          type: string
          readOnly: true
        source:
          title: Source
          type: string
          readOnly: true
  securitySchemes:
    Basic:
      type: http
      scheme: basic