Tomorrow.io Locations API

Manage saved locations (points, polygons, lines) referenced by ``locationId`` across the Tomorrow.io APIs, with tag-based cohorts for fleet, customer, or asset organization.

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/tomorrow-io-locations-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

tomorrow-io-locations-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Tomorrow.io Alerts Locations API
  version: '4.0'
  description: 'Create, manage, and trigger weather-based alerts. Alerts evaluate Tomorrow.io

    weather data layers against custom thresholds for one or more linked locations

    and deliver notifications via webhook, email, and the Tomorrow.io app.

    '
  contact:
    name: Tomorrow.io Support
    url: https://support.tomorrow.io
servers:
- url: https://api.tomorrow.io/v4
  description: Tomorrow.io Production
security:
- apikeyAuth: []
tags:
- name: Locations
  description: Manage reusable location resources.
paths:
  /locations:
    get:
      tags:
      - Locations
      summary: List Locations
      operationId: listLocations
      description: List all saved locations for the authenticated account.
      parameters:
      - name: apikey
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Location list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocationList'
    post:
      tags:
      - Locations
      summary: Create a Location
      operationId: createLocation
      description: Create a new saved location resource.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Location'
      parameters:
      - name: apikey
        in: query
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Location created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Location'
  /locations/{locationId}:
    get:
      tags:
      - Locations
      summary: Retrieve a Location
      operationId: getLocation
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      - name: apikey
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Location resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Location'
    put:
      tags:
      - Locations
      summary: Update a Location
      operationId: updateLocation
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      - name: apikey
        in: query
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Location'
      responses:
        '200':
          description: Updated location.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Location'
    delete:
      tags:
      - Locations
      summary: Delete a Location
      operationId: deleteLocation
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      - name: apikey
        in: query
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Deleted.
  /locations/tags/add:
    post:
      tags:
      - Locations
      summary: Add Location Tags
      operationId: addLocationTags
      description: Attach one or more tags to a list of locations.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TagRequest'
      parameters:
      - name: apikey
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Tag operation complete.
  /locations/tags/remove:
    post:
      tags:
      - Locations
      summary: Remove Location Tags
      operationId: removeLocationTags
      description: Detach one or more tags from a list of locations.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TagRequest'
      parameters:
      - name: apikey
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Tag operation complete.
components:
  schemas:
    Location:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        location:
          type: object
          description: GeoJSON Point, Polygon, or LineString.
          properties:
            type:
              type: string
              enum:
              - Point
              - Polygon
              - LineString
            coordinates:
              type: array
        tags:
          type: array
          items:
            type: string
    LocationList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Location'
    TagRequest:
      type: object
      required:
      - locationIds
      - tags
      properties:
        locationIds:
          type: array
          items:
            type: string
        tags:
          type: array
          items:
            type: string
  securitySchemes:
    apikeyAuth:
      type: apiKey
      in: query
      name: apikey