Flipturn Site Power Limits API

Cost and capacity power limits for a site.

Operations 3

GET /site/{site-id}/limits Get site power limits #
POST /site/{site-id}/limits Create a site power limit #
DELETE /site/{site-id}/limits/{schedule-id} Delete a site power limit #

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/flipturn-site-power-limits-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

flipturn-site-power-limits-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Flipturn Access IDs Site Power Limits API
  version: '1.0'
  description: 'The Flipturn API provides read and write access to the Flipturn EV charging management platform: sites, chargers and ports, charging sessions, charger health and uptime, access IDs (RFID cards and vehicles), vehicles, alerts, charger errors, raw OCPP messages, reservations, site power limits, vehicle departure times, and maintenance windows. It is a JSON REST API secured with a bearer API key, designed for integrating Flipturn charging data with ticketing platforms, data warehouses, transportation management systems, and fleet operations tooling. Flipturn also supports OCPI for roaming-partner integration (contact support to enable).'
  contact:
    name: Flipturn Support
    email: support@getflipturn.com
    url: https://api-docs.getflipturn.com/
  x-apievangelist-generated: '2026-07-19'
  x-apievangelist-method: generated
  x-apievangelist-source: https://api-docs.getflipturn.com/llms.txt
servers:
- url: https://api.getflipturn.com/api
  description: Production
security:
- bearerAuth: []
tags:
- name: Site Power Limits
  description: Cost and capacity power limits for a site.
paths:
  /site/{site-id}/limits:
    get:
      operationId: getSitePowerLimits
      tags:
      - Site Power Limits
      summary: Get site power limits
      description: Return the active cost and/or capacity power limits for a site (up to one schedule per type). Returns an empty array if none are set.
      parameters:
      - name: site-id
        in: path
        required: true
        description: Flipturn site ID.
        schema:
          type: integer
      responses:
        '200':
          description: The site's power limit schedules.
          content:
            application/json:
              schema:
                type: object
                properties:
                  sitePowerLimitSchedules:
                    type: array
                    items:
                      $ref: '#/components/schemas/SitePowerLimitSchedule'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    post:
      operationId: createSitePowerLimit
      tags:
      - Site Power Limits
      summary: Create a site power limit
      description: Create a new site power limit, replacing the current limit of that type. Cost limits are a soft cap; capacity limits are a hard cap. Amp-based limits are not supported on sites containing DCFC chargers.
      parameters:
      - name: site-id
        in: path
        required: true
        description: Flipturn site ID.
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - sitePowerLimitSchedule
              properties:
                sitePowerLimitSchedule:
                  type: object
                  required:
                  - type
                  - limit
                  - chargingRateUnit
                  properties:
                    type:
                      type: string
                      enum:
                      - cost
                      - capacity
                    limit:
                      type: integer
                      description: Positive integer limit.
                    chargingRateUnit:
                      type: string
                      enum:
                      - W
                      - A
                      description: Watts or amps.
      responses:
        '200':
          description: The created schedule ID.
          content:
            application/json:
              schema:
                type: object
                properties:
                  sitePowerLimitScheduleId:
                    type: string
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /site/{site-id}/limits/{schedule-id}:
    delete:
      operationId: deleteSitePowerLimit
      tags:
      - Site Power Limits
      summary: Delete a site power limit
      description: Remove a site power limit schedule.
      parameters:
      - name: site-id
        in: path
        required: true
        schema:
          type: integer
      - name: schedule-id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Deleted.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Error:
      type: object
      description: Flipturn error envelope.
      properties:
        error:
          type: string
          description: Human-readable error message.
    SitePowerLimitSchedule:
      type: object
      properties:
        id:
          type: string
        createdAt:
          type: string
          format: date-time
        source:
          type: string
          description: How the limit was created - "manual", "api", etc.
        type:
          type: string
          enum:
          - cost
          - capacity
        schedules:
          type: array
          items:
            type: object
            properties:
              daysOfWeek:
                type: array
                items:
                  type: integer
              chargingRateUnit:
                type: string
                enum:
                - W
                - A
              chargingSchedulePeriods:
                type: array
                items:
                  type: object
                  properties:
                    startPeriod:
                      type: integer
                    limit:
                      type: number
  responses:
    BadRequest:
      description: Invalid parameters passed to the API endpoint.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The requested resource or endpoint does not exist.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Invalid API key or Authorization header.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key passed as a bearer token in the Authorization header: `Authorization: Bearer {api_key}`. Keys are created in the Flipturn app (Manage > API Keys) by an Owner and can be scoped to specific sites or chargers.'