Navigate Markets API

The Markets API from Navigate — 2 operation(s) for markets.

Operations 4

GET /v1/markets List markets #
POST /v1/markets Create a market #
GET /v1/markets/{market_id} Get a market #
POST /v1/markets/{market_id} Update a market #

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/navigate-markets-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

navigate-markets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NavigateAI Access codes Markets API
  version: 1.0.0
  description: The NavigateAI external API allows you to programmatically manage locations, scoping, work orders, and more.
servers:
- url: https://api.navigateai.co
tags:
- name: Markets
paths:
  /v1/markets:
    get:
      operationId: api_external_api_market_list_markets
      summary: List markets
      parameters:
      - in: query
        name: reference_key
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Reference Key
        required: false
      - in: query
        name: slug
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Slug
        required: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListMarketsResponse'
      tags:
      - Markets
      security:
      - ApiKeyAuth: []
    post:
      operationId: api_external_api_market_create_market
      summary: Create a market
      parameters: []
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketResponse'
      tags:
      - Markets
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateMarketRequest'
        required: true
      security:
      - ApiKeyAuth: []
  /v1/markets/{market_id}:
    get:
      operationId: api_external_api_market_get_market
      summary: Get a market
      parameters:
      - in: path
        name: market_id
        schema:
          title: Market Id
          type: string
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketResponse'
      tags:
      - Markets
      security:
      - ApiKeyAuth: []
    post:
      operationId: api_external_api_market_update_market
      summary: Update a market
      parameters:
      - in: path
        name: market_id
        schema:
          title: Market Id
          type: string
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketResponse'
      tags:
      - Markets
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateMarketRequest'
        required: true
      security:
      - ApiKeyAuth: []
components:
  schemas:
    UpdateMarketRequest:
      additionalProperties: false
      description: 'Request schema for updating a market.


        All fields are optional. Omitting a field leaves it unchanged.'
      properties:
        name:
          description: Display name for the market. Must be unique within your organization. Omit to leave unchanged.
          minLength: 1
          title: Name
          type: string
        slug:
          description: URL-friendly identifier for the market. Must be unique within your organization. Only lowercase letters and underscores are allowed. Omit to leave unchanged.
          pattern: ^[a-z_]+$
          title: Slug
          type: string
      required: []
      title: UpdateMarketRequest
      type: object
    MarketResponse:
      properties:
        market:
          $ref: '#/components/schemas/MarketExternalSchema'
      required:
      - market
      title: MarketResponse
      type: object
    CreateMarketRequest:
      additionalProperties: false
      properties:
        name:
          description: Display name for the market.
          minLength: 1
          title: Name
          type: string
        slug:
          description: URL-friendly identifier for the market. Must be unique within your organization. Only lowercase letters and underscores are allowed.
          pattern: ^[a-z_]+$
          title: Slug
          type: string
      required:
      - name
      - slug
      title: CreateMarketRequest
      type: object
    MarketExternalSchema:
      properties:
        id:
          title: Id
          type: string
        name:
          description: Display name for this market. Must be unique within your organization.
          title: Name
          type: string
        slug:
          description: URL-friendly identifier for this market. Must be unique within your organization. Only lowercase letters and underscores are allowed.
          title: Slug
          type: string
        reference_key:
          anyOf:
          - type: string
          - type: 'null'
          description: Optional unique identifier for this market in your system. Must be unique within your organization.
          title: Reference Key
      required:
      - id
      - name
      - slug
      - reference_key
      title: Market
      type: object
    ListMarketsResponse:
      properties:
        markets:
          items:
            $ref: '#/components/schemas/MarketExternalSchema'
          title: Markets
          type: array
      required:
      - markets
      title: ListMarketsResponse
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer