TicTacTrip StopClusters API

The StopClusters API from TicTacTrip — 2 operation(s) for stopclusters.

Operations 2

GET /v2/stopClusters #
GET /v2/stopClusters/{stopClusterGpuid} #

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/tictactrip-stopclusters-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

tictactrip-stopclusters-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: '@tictactrip/api Autocomplete Stop Clusters API'
  version: 2.1489.0
  description: Tictactrip's API service
  license:
    name: UNLICENSED
  contact:
    name: Tictactrip
    email: dev@tictactrip.eu
    url: https://www.tictactrip.eu
servers:
- url: /
tags:
- name: StopClusters
paths:
  /v2/stopClusters:
    get:
      operationId: GetAllStopClusters
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/IGetStopClusterResponse'
                type: array
              examples:
                Example 1:
                  value:
                  - id: c|FRangers__@gbrw5
                    name: Angers
                    city: Angers
                    region: Pays-de-la-Loire
                    country: FR
                    latitude: 47.478419
                    longitude: 0.563166
                    transportTypes:
                    - bus
                    - train
                    stopGroups:
                    - id: g|FRangmaiec@gbrw5c
                      name: Angers Maitre Ecole
                      city: Angers
                      region: Pays-de-la-Loire
                      country: FR
                      address: 21 Rue Louis Legendre, 49100 Angers, France
                      latitude: 47.467
                      longitude: 0.5322
                      transportTypes:
                      - train
                    - id: g|FRangsaila@gbrw52
                      name: Angers Saint-Laud
                      city: Angers
                      region: Pays-de-la-Loire
                      country: FR
                      address: 1 Esplanade De La Gare, 49100 Angers, France
                      latitude: 47.46477
                      longitude: 0.55693
                      transportTypes:
                      - bus
                      - train
        '500':
          description: If an unexpected error occurred
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IErrorCodeResponse'
              examples:
                Example 1:
                  value:
                    errorKey: general:internal:unexpected
                    errorMessage: An unexpected error occurred
      description: Returns the list of all StopClusters.
      security:
      - authentication:
        - bookPartner
        - searchPartner
        - admin
      parameters: []
      tags:
      - StopClusters
  /v2/stopClusters/{stopClusterGpuid}:
    get:
      operationId: GetStopCluster
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IGetStopClusterResponse'
              examples:
                Example 1:
                  value:
                    id: c|FRangers__@gbrw5
                    name: Angers
                    city: Angers
                    region: Pays-de-la-Loire
                    country: FR
                    latitude: 47.478419
                    longitude: 0.563166
                    transportTypes:
                    - bus
                    - train
                    stopGroups:
                    - id: g|FRangmaiec@gbrw5c
                      name: Angers Maitre Ecole
                      city: Angers
                      region: Pays-de-la-Loire
                      country: FR
                      address: 21 Rue Louis Legendre, 49100 Angers, France
                      latitude: 47.467
                      longitude: 0.5322
                      transportTypes:
                      - train
                    - id: g|FRangsaila@gbrw52
                      name: Angers Saint-Laud
                      city: Angers
                      region: Pays-de-la-Loire
                      country: FR
                      address: 1 Esplanade De La Gare, 49100 Angers, France
                      latitude: 47.46477
                      longitude: 0.55693
                      transportTypes:
                      - bus
                      - train
        '404':
          description: StopCluster not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IErrorCodeResponse'
              examples:
                Example 1:
                  value:
                    errorKey: partnersApi:client:stopClusterNotFound
                    errorMessage: This StopCluster could not be found
        '500':
          description: If an unexpected error occurred
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IErrorCodeResponse'
              examples:
                Example 1:
                  value:
                    errorKey: general:internal:unexpected
                    errorMessage: An unexpected error occurred
      description: Returns a StopCluster details.
      security:
      - authentication:
        - bookPartner
        - searchPartner
        - admin
      parameters:
      - in: path
        name: stopClusterGpuid
        required: true
        schema:
          type: string
        example: c|FRangers__@gbrw5
      tags:
      - StopClusters
components:
  schemas:
    IErrorCodeResponse:
      properties:
        errorKey:
          type: string
        errorMessage:
          type: string
      required:
      - errorKey
      - errorMessage
      type: object
      additionalProperties: false
    IApiStopGroupWithTransportTypes:
      properties:
        id:
          type: string
        name:
          type: string
        city:
          type: string
        region:
          type: string
        country:
          type: string
        address:
          type: string
        latitude:
          type: number
          format: double
        longitude:
          type: number
          format: double
        transportTypes:
          items:
            $ref: '#/components/schemas/EApiTransportType'
          type: array
      required:
      - id
      - name
      - city
      - region
      - country
      - address
      - latitude
      - longitude
      - transportTypes
      type: object
      additionalProperties: false
    IGetStopClusterResponse:
      properties:
        id:
          type: string
        name:
          type: string
        city:
          type: string
        region:
          type: string
        country:
          type: string
        latitude:
          type: number
          format: double
        longitude:
          type: number
          format: double
        transportTypes:
          items:
            $ref: '#/components/schemas/EApiTransportType'
          type: array
        stopGroups:
          items:
            $ref: '#/components/schemas/IApiStopGroupWithTransportTypes'
          type: array
      required:
      - id
      - name
      - city
      - region
      - country
      - latitude
      - longitude
      - transportTypes
      - stopGroups
      type: object
      additionalProperties: false
    EApiTransportType:
      enum:
      - carpooling
      - bus
      - train
      type: string
  securitySchemes:
    authentication:
      type: http
      scheme: bearer
      bearerFormat: JWT