Domains
The domains API provides access to the list of domains that the platform makes available. These are platform-provided domains that you can use for your pages.
Note: This API only supports listing operations. Domains are managed by the platform and cannot be created, updated, or deleted through the API.
List Domains
Get a list of all domains provided by the platform.
GET https://v1.freeqr.io/api/domains
Requires Authentication: Yes
Response
{
"data": [
{
"domain": "example.com"
},
{
"domain": "another.com"
}
]
}
Note: This endpoint returns all platform-provided domains without pagination.