Query: the project's named IP sources (DOMAIN 15).
GET
/projects/{projectId}/source-hosts
const url = 'https://example.com/api/v1/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/source-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/source-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“Source hosts.
Media typeapplication/json
Array<object>
Named IP source of a project (DOMAIN 15).
object
id
string format: uuid
projectId
string format: uuid
name
string
ipv4
Array<string>
ipv6
Array<string>
updatedAt
string format: date-time
Examplegenerated
[ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "projectId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "ipv4": [ "example" ], "ipv6": [ "example" ], "updatedAt": "2026-04-15T12:00:00Z" }]