getneo
  1. Counterparties
getneo
  • Introduction
  • API examples
  • Technical topics
    • API structure
    • HTTP headers
    • Decoupled responses
    • Validation failures (418)
  • Endpoints
    • Auth
      • Get service bearer token (password)
        GET
      • Change tenant
        GET
      • Close session
        GET
    • Counterparties
      • Get all counterparties
        GET
      • Get counterparty by ID
        GET
      • Get draft counterparty by ID
        GET
      • Submit counterparty draft
        POST
      • Update counterparty draft
        POST
      • Delete a counterparty draft
        DELETE
      • Add account to counterparty
        POST
      • Update counterparty account
        PATCH
      • Export counterparty data
        POST
    • Payments
      • Get all payments
        GET
      • Get a payment by ID
        GET
      • Make a payment (deposit, withdrawal or internal)
        POST
    • Trading
      • Quote order
      • Submit order
    • Wallets
      • Get all wallets
      • Get a wallet by ID
  • Schemas
    • Schemas
      • Components
        • AmountModel
        • AmountModelWithRate
        • BaseableAmountModel
        • CorpModel
        • IbanModel
        • TenantInfo
        • WalletModel
        • WalletLedgerModelV5
        • OrderLegAccount
      • Enums
        • OrderTypes
      • Reference
        • actions
        • bic_swift
        • country
        • currency
        • entity_key
      • Responses
        • CorpWalletModelV2
        • FullIdentityResponse
        • IdentityResponse
      • Forms
        • OrderQuoteForm
      • counterpartyAccountModelV3
      • ibanSlim
      • accountInfo
      • counterpartyAttachmentsResponseModel
      • accountOwnerModel
      • counterpartyModelV3
      • accountSlim
      • intermediaryBankAccountModel
      • addressModel
      • amountSlim
      • commissionResponseModel
      • confirmationDocumentResponseModel
      • counterpartyAccountModelV2
      • counterpartyModelV2
      • forwardRateModel
      • invoiceableAmountModel
      • leg
      • marginResponseModel
      • marketInfoResponseModel
      • markToMarketResponseModel
      • orderPaymentResponseModel
      • orderQuoteResponse
      • orderSettlementResponseModel
      • paymentAccountModel
      • paymentAttachmentsResponseModel
      • paymentBlotterItemModelV2
      • paymentCounterpartyAccountModel
      • paymentCounterpartyModel
      • paymentDestinationModel
      • paymentFeesChargeModel
      • paymentFeeSlim
      • paymentForm
      • paymentItemSlimModel
      • paymentSourceForm
      • paymentSourceModel
      • paymentTrackingSource
      • personModel
      • quotePriceModel
      • rateModel
      • rejectForm
      • reversableRateModel
      • settlementInstructionsModel
      • specifiedPaymentFee
      • swapInfoModel
      • tickPriceModel
      • tickRateModel
      • tradeLimitsModel
    • Response
      • standard-Validation-Failure
  1. Counterparties

Get counterparty by ID

Demo
https://api.demo.getneo.com
Demo
https://api.demo.getneo.com
GET
/v3/counterparties/{id}
Gets a single active counterparty by ID.
If the counterparty has never been active, the draft will be returned.

Request

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

Responses

🟢200OK
application/json
OK
Body

🟠401Unauthorized
🟠403Forbidden
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.demo.getneo.com/v3/counterparties/' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "accounts": [
        {
            "accountNumber": "string",
            "actions": [
                "string"
            ],
            "additionalCountryAccountInfo": "string",
            "alias": "string",
            "bank": "string",
            "bankAccountId": "abcdefghijkl0123456789",
            "bankCode": "string",
            "bic_swift": "NEOPESBB",
            "country": "ESP",
            "currencies": [
                "EUR"
            ],
            "iban": "string",
            "intermediaryBank": "string",
            "intermediaryBankAccounts": [
                {
                    "currency": "EUR",
                    "bicSwift": "NEOPESBB"
                }
            ],
            "isBeneficiary": true,
            "isPayer": true,
            "operatorInfo": "string",
            "parentId": "abcdefghijkl0123456789",
            "recurringReference": "string",
            "routingNumber": "string",
            "sortCodeUK": "string"
        }
    ],
    "actions": [
        "string"
    ],
    "address1": "string",
    "address2": "string",
    "alias": "string",
    "city": "string",
    "country": "ESP",
    "county": "string",
    "currencies": [
        "EUR"
    ],
    "draft": {},
    "email": "string",
    "firstName": "string",
    "id": "abcdefghijkl0123456789",
    "isBeneficiary": true,
    "isPayer": true,
    "isSelf": true,
    "lastName": "string",
    "linkedDocuments": {
        "count": 0,
        "uri": "http://example.com"
    },
    "name": "string",
    "paymentReason": [
        "string"
    ],
    "postCode": "string",
    "primaryType": "string",
    "shortfall": 0,
    "shortfallCurrencyCode": "EUR",
    "state": "draft",
    "subsidiary": "string",
    "subType": "string",
    "thirdPartyType": "string",
    "thirdPartyTypeOther": "string",
    "vanityId": "string"
}
Modified at 2025-11-28 09:18:21
Previous
Get all counterparties
Next
Get draft counterparty by ID
Built with