Sokin Embeded API
  1. v2025-12-01
Sokin Embeded API
  • Getting Started
    • Sokin Definitions
    • Guides
      • Authentication
      • Receiving Payments
      • FX Payments
      • Payments
      • Unfunded Payments
      • Unfunded FX Payments
  • Authentication
    • Get Token
      POST
    • Get Token on behalf of corporate
      POST
    • Schemas
      • TokenResponse
  • Corporate Currency Accounts
    • v2025-12-01
      • Get Corporate Currency Accounts
        GET
      • Get Corporate Currency Account By Reference
        GET
    • Schemas
      • GetCCAByReferenceResponse
      • GetCCAsResponse
      • GetCCAsResponseItem
      • GetCCAByReferenceResponsePayInDetail
      • PaginationInfo
  • Beneficiaries
    • v2025-12-01
      • Get Beneficiary Fields
      • Create External Beneficiary
      • Get Beneficiary List
      • Get Beneficiary Details
      • Delete Beneficiary
    • Schemas
      • BeneficiaryDetailsResponse
      • CreateExternalBeneficiaryRequest
      • CreateExternalBeneficiaryResponse
      • GetBeneficiaryFieldsResponse
      • BeneficiaryListResponse
      • BeneficiaryListResponse
  • Instruction Requests
    • v2025-12-01
      • Get Instruction Request By Reference
      • Create Payment Instruction Request
      • Create Fx Instruction Request
      • Create Fx Payment Instruction Request
      • Create Unfunded Payment Instruction Request
      • Create Unfunded Fx Payment Instruction Request
    • Schemas
      • CreateFXInstructionRequest
      • CreateFxPaymentInstructionRequest
      • CreateInstructionRequestResponse
      • CreatePaymentInstructionRequest
      • CreateResellerFxPaymentInstructionRequest
      • CreateResellerPaymentInstructionRequest
      • GetInstructionRequestResponse
  • Instructions
    • v2025-12-01
      • Get Instruction By Reference
    • Schemas
      • GetInstructionResponse
  • Foreign Exchange
    • v2025-12-01
      • Get Fx Rate
    • Schemas
      • FxRateRequest
  • Webhooks
    • Webhooks
    • Schemas
      • InstructionCreated
      • InstructionReqeustRejected
      • InstructionProcessedWebhook
      • InstructionRejectedWebhook
      • OnboardingRequestApproved
      • OnboardingRequestRejected
      • CorporateActivated
      • CorporateDeactivated
      • CorporateCurrencyAccountFundingReceived
  1. v2025-12-01

Get Corporate Currency Account By Reference

Testing Env
https://api.uat.sokin.com
Testing Env
https://api.uat.sokin.com
GET
/corporate-currency-accounts/{corporate_currency_account_reference}
This endpoint retrieves the details of a Corproate Currency account; including the current balance of the account as well as the pay-in details used to make deposits to your accou

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Header Params

Responses

🟢200OK
application/json
Successful Response
Body

🟠422Unprocessable Entity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.uat.sokin.com/corporate-currency-accounts/CA-USD-019a79d4-a04b-745d-9a78-c3941b169237' \
--header 'x-api-version: 2025-12-01' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "external_reference": "CA-USD-019a79d4-a04b-745d-9a78-c3941b169237",
    "version": 27,
    "currency": "USD",
    "current_balance": 5327.32,
    "international_payment_details": [
        {
            "account_name": "Sokin",
            "iban": "PL61109010140000071219812874",
            "bic_code": "BOFAUS3N",
            "bank_name": "Money Corp",
            "bank_country": "US",
            "bank_address": "123 Banking Street"
        }
    ],
    "local_payment_details": {
        "account_name": "Sokin",
        "account_number": "12598765",
        "bic_code": "DEUTDEFF",
        "bank_name": "Bank of Montreal",
        "bank_address": "125 Currency Street",
        "bank_country": "US",
        "routing_code_type": "ABA",
        "routing_code": "15869852"
    }
}
Modified at 2025-11-27 08:59:31
Previous
Get Corporate Currency Accounts
Next
GetCCAByReferenceResponse
Built with