Skip to main content
GET
/
v1
/
parties
/
{id}
Get specific party
curl --request GET \
  --url https://api.example.com/v1/parties/{id}
{
  "id": "019bdb2a-960f-789d-8955-21720e6cdeed",
  "originPartyId": "1f770bac-670a-40fc-9deb-0a691034495a",
  "firstName": "John",
  "lastName": "Doe",
  "dateOfBirth": "1990-01-15T00:00:00.000Z",
  "nationality": "LT",
  "taxIdentifications": [
    {
      "tin": "12345678901",
      "country": "LT"
    }
  ],
  "documents": [
    {
      "type": "PASSPORT",
      "number": "AB1234567"
    }
  ],
  "registrationNumber": "123456789",
  "legalName": "Acme Corp",
  "country": "LT",
  "uboDetails": [
    {
      "firstName": "John",
      "lastName": "Doe",
      "taxIdentifications": [
        {
          "tin": "12345678901",
          "country": "LT"
        }
      ],
      "dateFrom": "2020-01-01T00:00:00.000Z",
      "dateOfBirth": "1990-01-15T00:00:00.000Z",
      "registrationAddress": {
        "townName": "Vilnius",
        "streetName": "Gedimino pr.",
        "buildingNumber": "1",
        "postCode": "01103",
        "country": "LT"
      },
      "documents": [
        {
          "type": "PASSPORT",
          "number": "AB1234567"
        }
      ]
    }
  ],
  "representatives": [
    {
      "firstName": "Jane",
      "lastName": "Smith",
      "taxIdentifications": [
        {
          "tin": "12345678901",
          "country": "LT"
        }
      ],
      "dateFrom": "2020-01-01T00:00:00.000Z",
      "dateOfBirth": "1990-01-15T00:00:00.000Z",
      "registrationAddress": {
        "townName": "Vilnius",
        "streetName": "Gedimino pr.",
        "buildingNumber": "1",
        "postCode": "01103",
        "country": "LT"
      },
      "documents": [
        {
          "type": "PASSPORT",
          "number": "AB1234567"
        }
      ]
    }
  ],
  "registrationAddress": {
    "townName": "Vilnius",
    "streetName": "Gedimino pr.",
    "buildingNumber": "1",
    "postCode": "01103",
    "country": "LT"
  },
  "createdAt": "2026-01-22T13:47:21.542Z",
  "updatedAt": "2026-01-22T13:47:21.542Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.finventi.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string<uuid>
required

Party ID

Pattern: [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

Response

Party details

Party details

id
string<uuid>

Party ID

Pattern: [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}
Example:

"019bdb2a-960f-789d-8955-21720e6cdeed"

type
enum<string>

Party type

Available options:
INDIVIDUAL,
ORGANISATION
originPartyId
string

Origin party identifier

Example:

"1f770bac-670a-40fc-9deb-0a691034495a"

firstName
string | null

First name (individual)

Example:

"John"

lastName
string | null

Last name (individual)

Example:

"Doe"

dateOfBirth
string<date> | null

Date of birth (individual)

Example:

"1990-01-15T00:00:00.000Z"

nationality
string | null

Nationality (individual)

Example:

"LT"

taxIdentifications
object[] | null

Tax identifications (individual)

documents
object[] | null

Identification documents (individual)

registrationNumber
string | null

Registration number (organisation)

Example:

"123456789"

Legal name (organisation)

Example:

"Acme Corp"

country
string | null

Country (organisation)

Example:

"LT"

uboDetails
object[] | null

UBO details (organisation)

representatives
object[] | null

Representatives (organisation)

registrationAddress
object

Registration address

createdAt
string<date-time>

Party creation timestamp

Example:

"2026-01-22T13:47:21.542Z"

updatedAt
string<date-time>

Party last update timestamp

Example:

"2026-01-22T13:47:21.542Z"

Last modified on March 4, 2026