DynDNS targets of one project.
GET
/projects/{projectId}/dyn-hosts
const url = 'https://example.com/api/v1/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/dyn-hosts';const options = {method: 'GET', headers: {cookie: 'dnse_session=<dnse_session>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/dyn-hosts \ --cookie dnse_session=<dnse_session>Authorizations
Abschnitt betitelt „Authorizations“Parameters
Abschnitt betitelt „Parameters“Path Parameters
Abschnitt betitelt „Path Parameters“projectId
required
string format: uuid
Responses
Abschnitt betitelt „Responses“Dynamic hosts.
Media typeapplication/json
Array<object>
object
id
string format: uuid
projectId
string format: uuid
label
string
names
The target’s dynamic names as FQDNs.
Array<string>
lastIPv4
string
lastIPv6
string
updatedAt
Last update call.
string format: date-time
token
Present only in the create response — shown exactly once.
string
Examplegenerated
[ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "projectId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "label": "example", "names": [ "example" ], "lastIPv4": "example", "lastIPv6": "example", "updatedAt": "2026-04-15T12:00:00Z", "token": "example" }]