Maven Machines Marketapps API

The marketapps API from Maven Machines — 1 operation(s) for marketapps.

Operations 1

GET /marketapps/session GET /marketapps/session #

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/maven-machines-marketapps-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

maven-machines-marketapps-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Market Apps Marketapps API
  description: Documentation for Market App APIs
  version: '1.0'
  contact: {}
servers:
- url: https://integrations.mavenmachines.com
tags:
- name: marketapps
paths:
  /marketapps/session:
    get:
      operationId: MarketAppsController_getSession
      summary: GET /marketapps/session
      description: "\n    Retrieves market app session\n    "
      parameters:
      - name: sessionToken
        required: true
        in: query
        example: 61496424-f4a9-4705-850c-4b3f2426adb3
        description: Market app session token
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMarketAppSessionResponse'
      tags:
      - marketapps
      security:
      - api_key: []
components:
  schemas:
    GetMarketAppSessionResponse:
      type: object
      properties:
        expiration:
          type: string
          description: ISO8601 timestamp of when the session expires.
          example: '2020-04-09T21:50:42Z'
        companyId:
          type: number
          description: Company ID that session belongs to.
          example: 1
        sessionToken:
          type: string
          description: Token representing session.
          example: 61496424-f4a9-4705-850c-4b3f2426adb3
        driver:
          type: object
          description: Driver object
          example: {}
        vehicle:
          type: object
          description: Vehicle object
          example: {}
        driverVehicleAssociation:
          type: object
          description: Driver vehicle assocation object
          example: {}
      required:
      - expiration
      - companyId
      - sessionToken
      - driver
      - vehicle
      - driverVehicleAssociation
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: apiKey
x-readme:
  explorer-enabled: true
  proxy-enabled: true