Temenos Data Streaming API

Manage event streaming configurations for capturing data replication events from committed transactions in real time.

Operations 2

GET /streaming/configurations List Streaming Configurations #
POST /streaming/configurations Create Streaming Configuration #

Documentation

Specifications

Other Resources

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/temenos-data-streaming-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

temenos-data-streaming-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Temenos Transact Data Hub Data Streaming API
  description: High-performance APIs built on the near real-time Analytics Data Store (ADS) and Operational Data Store (ODS) from Temenos Transact Data Hub. Provides banking-specific analytical and operational data for comprehensive intra-day and historical analysis, reporting, and integration use cases utilizing real-time data streams and ETL transformations.
  version: 1.0.0
  contact:
    name: Temenos Developer Support
    url: https://developer.temenos.com/
    email: api.support@temenos.com
  license:
    name: Temenos Terms of Service
    url: https://www.temenos.com/legal-information/website-terms-and-conditions/
  termsOfService: https://www.temenos.com/legal-information/website-terms-and-conditions/
servers:
- url: https://api.temenos.com/transact-data-hub/v1
  description: Temenos Transact Data Hub API - Production
security:
- bearerAuth: []
tags:
- name: Data Streaming
  description: Manage event streaming configurations for capturing data replication events from committed transactions in real time.
paths:
  /streaming/configurations:
    get:
      operationId: listStreamingConfigurations
      summary: List Streaming Configurations
      description: Retrieve event streaming configurations for data replication and real-time event capture from committed transactions.
      tags:
      - Data Streaming
      responses:
        '200':
          description: Successful retrieval of configurations
          content:
            application/json:
              schema:
                type: object
                properties:
                  body:
                    type: array
                    items:
                      $ref: '#/components/schemas/StreamingConfiguration'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createStreamingConfiguration
      summary: Create Streaming Configuration
      description: Create a new event streaming configuration to capture data replication events when transactions are committed to the system.
      tags:
      - Data Streaming
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StreamingConfigurationCreate'
      responses:
        '201':
          description: Configuration created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StreamingConfiguration'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Authentication required
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      description: Error response
      properties:
        errorCode:
          type: string
          description: Error code
        errorMessage:
          type: string
          description: Error description
    StreamingConfigurationCreate:
      type: object
      description: Streaming configuration creation request
      required:
      - entityType
      - targetTopic
      properties:
        entityType:
          type: string
          description: Entity type to stream
        targetTopic:
          type: string
          description: Target Kafka topic
        filterCriteria:
          type: string
          description: Optional filter criteria
    StreamingConfiguration:
      type: object
      description: Event streaming configuration
      properties:
        configurationId:
          type: string
          description: Configuration identifier
        entityType:
          type: string
          description: Entity type to stream
        targetTopic:
          type: string
          description: Target Kafka topic
        filterCriteria:
          type: string
          description: Filter criteria for events
        status:
          type: string
          description: Configuration status
          enum:
          - ACTIVE
          - INACTIVE
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
externalDocs:
  description: Temenos Transact Data Hub Documentation
  url: https://developer.temenos.com/transact-data-hub