GET/api/holders
Vendors that hold every listed certification, optionally at a minimum level
- hasOne to five certification ids, comma separated; add :level for a minimum level (ids and levels at /api/certifications)
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
Shell
curl -s "https://attested.fru.dev/api/holders?has=gxp,part11&limit=3"Sample response
JSON
{
"has": [
{
"cert": "gxp",
"name": "GxP qualification",
"min_level": null
},
{
"cert": "part11",
"name": "FDA 21 CFR Part 11",
"min_level": null
}
],
"items": [
{
"slug": "microsoft",
"name": "Microsoft",
"domain": "microsoft.com",
"category": "Cloud",
"held": 50,
"url": "https://attested.fru.dev/vendors/microsoft",
"trust_center": "https://learn.microsoft.com/en-us/compliance/regulatory/offering-home",
"evidence": [
{
"cert": "gxp",
"name": "GxP qualification",
"state": "active",
"level": "",
"sources": [
"Vendor compliance page"
],
"registry": false,
"unverified": false,
"listed_since": null
},
{
"cert": "part11",
"name": "FDA 21 CFR Part 11",
"state": "active",
"level": "",
"sources": [
"Vendor compliance page"
],
"registry": false,
"unverified": false,
"listed_since": null
}
]
},
{
"slug": "aws",
"name": "AWS",
"domain": "aws.amazon.com",
"category": "Cloud",
"held": 41,
"url": "https://attested.fru.dev/vendors/aws",
"trust_center": "https://aws.amazon.com/compliance/programs/",
"evidence": [
{
"cert": "gxp",
"name": "GxP qualification",
"state": "active",
"level": "",
"sources": [
"Vendor compliance page"
],
"registry": false,
"unverified": false,
"listed_since": null
},
{
"cert": "part11",
"name": "FDA 21 CFR Part 11",
"state": "active",
"level": "",
"sources": [
"Vendor compliance page"
],
"registry": false,
"unverified": false,
"listed_since": null
}
]
}
],
"total": 3,
"limit": 3,
"offset": 0,
"next": null,
"updated": "2026-09-24 03:25:56"
}