Skip to main content
GET
/
v1
/
source-of-wealth
List Source of Wealth
curl --request GET \
  --url https://sandbox.api.fin.com/v1/source-of-wealth \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "pagination": {
      "current_page": 1,
      "per_page": 10,
      "total_page": 1,
      "total": 7
    },
    "source_of_wealths": [
      {
        "id": 1,
        "title": "Business dividends or profits"
      },
      {
        "id": 2,
        "title": "Investment income"
      },
      {
        "id": 3,
        "title": "Real estate"
      },
      {
        "id": 4,
        "title": "Inheritance"
      },
      {
        "id": 5,
        "title": "Salary"
      },
      {
        "id": 6,
        "title": "Sale of business"
      },
      {
        "id": 7,
        "title": "Other"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain token from /v1/oauth/token endpoint

Query Parameters

per_page
integer
default:10

Number of items to return per page

Required range: 1 <= x <= 512
current_page
integer
default:1

The page number to retrieve

Required range: x >= 1
type
enum<string>
required

Filter source of wealth by type

Available options:
INDIVIDUAL,
BUSINESS

Response

List of source of wealth retrieved successfully

data
object