Genome Host-to-Host API

Direct card processing

Operations 1

POST /api/pf/host-to-host Process a card transaction #

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/genome-host-to-host-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

genome-host-to-host-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Genome Payments Host To Host API
  description: 'Genome merchant payments API. Includes the Payout API for sending funds to

    cardholders (full card or tokenized card) and the Host-to-Host API for

    processing card transactions (AUTH, AUTH3D, SALE, SALE3D, SETTLE, REFUND,

    VOID, CHECK). All endpoints accept application/x-www-form-urlencoded

    serialized key-value pairs; the host-to-host endpoint also accepts JSON.

    Each request is authenticated using merchant_account and merchant_password

    credentials issued by Genome.

    '
  version: 1.0.0
  contact:
    name: Genome Developer Documentation
    url: https://developers.genome.eu/
servers:
- url: https://api.genome.eu
  description: Production
tags:
- name: Host-to-Host
  description: Direct card processing
paths:
  /api/pf/host-to-host:
    post:
      tags:
      - Host-to-Host
      summary: Process a card transaction
      description: 'Submit a card transaction. The transaction_type parameter determines

        the operation (AUTH, AUTH3D, SALE, SALE3D, SETTLE, REFUND, VOID, CHECK).

        '
      operationId: processTransaction
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/HostToHostRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/HostToHostRequest'
      responses:
        '200':
          description: Transaction response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionResponse'
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
components:
  responses:
    Error:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    TransactionResponse:
      type: object
      properties:
        sessionid:
          type: string
        timestamp:
          type: integer
        status:
          type: string
          enum:
          - pending
          - success
          - decline
          - error
        code:
          type: integer
        message:
          type: string
        redirect_url:
          type: string
          description: Present for 3DS flows
    HostToHostRequest:
      type: object
      required:
      - api_version
      - merchant_account
      - merchant_password
      - transaction_type
      - transaction_unique_id
      properties:
        api_version:
          type: string
          example: '1'
        merchant_account:
          type: string
        merchant_password:
          type: string
        transaction_type:
          type: string
          enum:
          - AUTH
          - AUTH3D
          - SALE
          - SALE3D
          - SETTLE
          - REFUND
          - VOID
          - CHECK
        transaction_unique_id:
          type: string
        amount:
          type: string
        currency:
          type: string
        callback_url:
          type: string
          format: uri
        user_id:
          type: string
        user_email:
          type: string
          format: email
        user_ip:
          type: string
        card:
          type: object
          properties:
            card_number:
              type: string
            card_exp_month:
              type: string
            card_exp_year:
              type: string
            card_cvv:
              type: string
            card_holder:
              type: string
            card_token:
              type: string
    Error:
      type: object
      properties:
        status:
          type: string
        code:
          type: integer
        message:
          type: string