Get a list of all current and Metro2 credit reports for a specific account
List of Metro2 credit reports for the account. To view line items for a specific credit report, use the /accounts/{account_id}/credit_reports/{credit_report_id}
route
Path parameters
-
account_id
string Required Account ID
Query parameters
-
limit
integer The maximum number of accounts to be returned. Defaults to 100.
GET
/accounts/{account_id}/credit_reports/list
curl \
-X GET https://sandbox-api.canopyservicing.com/accounts/31mNprzLd2bKl6koVna68ARM/credit_reports/list \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"results": [
{
"account_id": "31mNprzLd2bKl6koVna68ARM",
"credit_report_id": "31mNprzLd2bKl6koVna68ARM",
"cycle_summary": {
"cycle_inclusive_start": "2023-05-04T09:42:00+00:00",
"cycle_exclusive_end": "2023-05-04T09:42:00+00:00"
},
"bureau_reports_included": {
"equifax": true,
"experian": true,
"transunion": true
}
}
]
}
Response examples (200)
{
"results": [
{
"account_id": "31mNprzLd2bKl6koVna68ARM",
"credit_report_id": "31mNprzLd2bKl6koVna68ARM",
"cycle_summary": {
"cycle_inclusive_start": "2025-05-04T09:42:00Z",
"cycle_exclusive_end": "2025-05-04T09:42:00Z"
},
"bureau_reports_included": {
"equifax": true,
"experian": true,
"transunion": true
}
}
]
}