Skip to main content
GET
/
v1
/
source-of-funds
List Source of Funds
curl --request GET \
  --url https://sandbox.api.fin.com/v1/source-of-funds \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "pagination": {
      "current_page": 1,
      "per_page": 10,
      "total_page": 5,
      "total": 50
    },
    "source_of_funds": [
      {
        "id": 1,
        "title": "Employment Income"
      }
    ]
  }
}

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 funds by type

Available options:
INDIVIDUAL,
BUSINESS

Response

List of source of funds retrieved successfully

data
object