Get provider funding source
GET
/providers/{providerID}/participants/{participantID}/funding-sources/{fundingSourceID}
Fetch one funding source. A funding source from another provider and a missing source both return 404.
Auth: API key or bearer token. Scoped to the calling provider.
Request
curl -X GET https://api.moov.money/providers/{providerID}/participants/{participantID}/funding-sources/{fundingSourceID}Responses
The request completed successfully.
{
"fundingSource": {
"createdOn": "2026-08-31T12:00:00Z",
"displayName": "First National Checking",
"fundingSourceID": "fnd_01HF5J9ZKQT4RXP8M2VYBN3D",
"fundingType": "bank_account",
"last4": "4321",
"providerSourceID": "src_01HP5J9ZKQT4RXP8M2VYBN3D",
"updatedOn": "2026-08-31T12:00:00Z"
}
}Authentication missing, invalid, or insufficient.
Authentication present but the action is forbidden for this principal/claim.
The requested resource was not found.
Headers
X-Moov-Version
stringSet this header to the API version being targeted (e.g.
v2026.07.00). When omitted, the server applies its default version.Path parameters
providerID
string
requiredYour provider account ID.
participantID
string
requiredThe participant’s
participantID, or your externalID for them. Both
resolve to the same participant.fundingSourceID
string
requiredIdentifier of the funding source.
Response
Response envelope for get funding source; the source is nested under
fundingSource.fundingSource
object
requiredThe funding source.
Show child attributes
fundingSource
fundingType
string<enum>
requiredFunding source discriminator.
Possible values:
card,
bank_accountproviderSourceID
string
[1 to 256] characters
requiredYour identifier for the underlying funding source. Must be 1–256 characters.
displayName
string
[1 to 256] characters
requiredHuman-readable display label (e.g. the account nickname). Must be 1–256 characters.
last4
string
requiredLast four digits of the funding source number: the card number for
card, or the bank account number for bank_account. Rendered with displayName in the UI. At most 4 characters.createdOn
string<date-time>
requiredWhen this funding source was created.
updatedOn
string<date-time>
requiredWhen this funding source was last updated.
disabledOn
string<date-time>When this funding source was removed. Omitted while active.
fundingSourceID
string
requiredStable server-owned identifier a payout references.