Flipturn OCPP Messages API

Raw OCPP protocol messages for a charger.

Operations 1

GET /ocpp-messages List OCPP messages for a charger #

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-ocpp-messages-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-ocpp-messages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Flipturn Access IDs OCPP Messages 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: OCPP Messages
  description: Raw OCPP protocol messages for a charger.
paths:
  /ocpp-messages:
    get:
      operationId: listOcppMessages
      tags:
      - OCPP Messages
      summary: List OCPP messages for a charger
      description: Retrieve raw OCPP (Open Charge Point Protocol) messages for a specific charger, newest first. The date range must be under 8 days. Page size is controlled by limit (default 50, max 500).
      parameters:
      - name: chargerId
        in: query
        required: true
        description: The ID of the charger to retrieve messages for.
        schema:
          type: integer
      - name: startTimestamp
        in: query
        description: 'ISO 8601: messages after this time. Defaults to 24 hours ago.'
        schema:
          type: string
          format: date-time
      - name: endTimestamp
        in: query
        description: 'ISO 8601: messages before this time. Defaults to now.'
        schema:
          type: string
          format: date-time
      - name: messageType
        in: query
        description: Filter by OCPP message type(s), e.g. Authorize or messageType[]=StartTransaction.
        schema:
          type: array
          items:
            type: string
      - name: limit
        in: query
        description: Page size (default 50
        max 500).: null
        schema:
          type: integer
          default: 50
          maximum: 500
      - $ref: '#/components/parameters/NextPageCursor'
      responses:
        '200':
          description: A paginated list of OCPP messages.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/OcppMessage'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    Error:
      type: object
      description: Flipturn error envelope.
      properties:
        error:
          type: string
          description: Human-readable error message.
    OcppMessage:
      type: object
      properties:
        id:
          type: integer
        createdAt:
          type: string
          format: date-time
        ocppChargerIdentity:
          type: string
        messageType:
          type: string
        messagePayload: {}
        messageResponse: {}
        chargerId:
          type: integer
        protocol:
          type: string
          description: '''ocpp1.6'' or ''ocpp2.0.1''.'
    Pagination:
      type: object
      properties:
        hasNextPage:
          type: boolean
        nextPageCursor:
          type: string
          nullable: true
  responses:
    BadRequest:
      description: Invalid parameters passed to the API endpoint.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Invalid API key or Authorization header.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  parameters:
    NextPageCursor:
      name: nextPageCursor
      in: query
      description: Opaque cursor from the previous response's pagination.nextPageCursor to fetch the next page. Keep all other parameters identical.
      schema:
        type: string
  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.'