---
title: "Create Standalone Transfer"
method: POST
path: "/split-marketplace/transfers"
tags: ["Transfers"]
---

# Create Standalone Transfer

`POST /split-marketplace/transfers`

## Headers

- `X-Idempotency-Key` string, required

## Request body

- object
  - `account_id` string, required — The unique identifier of the account.
  - `recipient_id` string, uuid, required — The target recipient identifier.
  - `provider_id` string, required — The payment provider code to use (e.g., adyen, stripe).
  - `amount` Amount, required
    - `value` number, required
    - `currency` string, required
  - `description` string — A human-readable description for the transfer (3-255 chars). This is sent to the provider.
  - `merchant_reference` string — Merchant's unique identifier for idempotency and tracking.
  - `metadata` object[]
    - `key` string
    - `value` string

## Response `201`

Created

- Transfer
  - `id` string
  - `recipient_id` string, uuid
  - `amount` Amount
    - `value` number, required
    - `currency` string, required
  - `status` string
  - `reason` string
  - `description` string
  - `merchant_reference` string
  - `metadata` object[]
    - `key` string
    - `value` string
  - `provider_data` ProviderData
    - `id` string
    - `recipient_id` string
    - `transfer_id` string
    - `response_code` string
    - `response_message` string
  - `created_at` string, date-time
  - `updated_at` string, date-time
  - `completed_at` string, date-time
  - `provider` string, nullable
  - `transactions` object[]
    - `code` string
    - `type` string
    - `status` string
    - `provider_transfer_id` string
    - `provider_response_message` string
    - `provider_raw_response` string
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `400` — Bad Request
- `404` — Not Found
- `502` — Bad Gateway

---

[API](https://skmtc.net/y/apis/ai-caller.md) · [All operations](https://skmtc.net/y/apis/ai-caller/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/y/ai-caller/revisions/05b629819b49/schema)
