Paedae Places API

The Places API from Paedae — 5 operation(s) for places.

Operations 5

GET /v2/places Retrieve all places (supports filtering and pagination) #
POST /v2/places Create place with geofence and/or beacons #
GET /v2/places/{placeId} Get place detail #
PUT /v2/places/{placeId} Update place #
DELETE /v2/places/{placeId} Delete place #

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/paedae-places-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

paedae-places-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gimbal REST Applications Places API
  version: v2
  description: 'The Gimbal REST API manages proximity and location assets for the Gimbal platform operated by Paedae/Infillion: applications, places (geofences and beacons), beacons and their configurations, and communications (notifications and triggers). All requests and responses use JSON.'
  contact:
    name: Gimbal Support
    url: https://support.gimbal.com/hc/en-us/
  license:
    name: Proprietary
servers:
- url: https://manager.gimbal.com/api
  description: Gimbal Manager API
security:
- OrganizationServerApiKey: []
tags:
- name: Places
paths:
  /v2/places:
    get:
      tags:
      - Places
      operationId: listPlaces
      summary: Retrieve all places (supports filtering and pagination)
      parameters:
      - name: name
        in: query
        description: Filter by name (partial match).
        schema:
          type: string
      - name: page
        in: query
        description: Page of results to return. If per_page is given but page is not, page defaults to 1.
        schema:
          type: integer
      - name: per_page
        in: query
        description: Number of items per page. If page is given but per_page is not, per_page defaults to 50. Pagination is only performed when page or per_page is sent.
        schema:
          type: integer
          default: 50
      responses:
        '200':
          description: Success
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      tags:
      - Places
      operationId: createPlace
      summary: Create place with geofence and/or beacons
      responses:
        '200':
          description: Success
        '422':
          $ref: '#/components/responses/Unprocessable'
  /v2/places/{placeId}:
    parameters:
    - name: placeId
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Places
      operationId: getPlace
      summary: Get place detail
      responses:
        '200':
          description: Success
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      tags:
      - Places
      operationId: updatePlace
      summary: Update place
      responses:
        '200':
          description: Success
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      tags:
      - Places
      operationId: deletePlace
      summary: Delete place
      responses:
        '200':
          description: Success
        '404':
          $ref: '#/components/responses/NotFound'
components:
  responses:
    NotFound:
      description: Resource Not Found (404)
    Unauthorized:
      description: Unauthorized (401)
    Unprocessable:
      description: Unprocessable Entity (422)
  securitySchemes:
    OrganizationServerApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: 'Organization server API key passed as `Authorization: Token token=my_organization_server_api_key`.'
    ProximityOAuth2:
      type: oauth2
      description: Some Proximity APIs require an OAuth 2.0 access token instead of the organization server API key.
      flows:
        authorizationCode:
          authorizationUrl: https://manager.gimbal.com/oauth/authorize
          tokenUrl: https://manager.gimbal.com/oauth/token
          scopes: {}