✨
PacketEngine API Docs
  • Welcome!
  • Quick Start
  • Reference
    • API Reference
      • Authentication
      • Domains
      • Subdomains
      • IPs
Powered by GitBook
On this page
  • Get all domains
  • Retrieve all domains associated with the authenticated user
  • Get a specific domain
  • Retrieve details of a specific domain associated with the authenticated user
  1. Reference
  2. API Reference

Domains

Get all domains

Retrieve all domains associated with the authenticated user

GET https://api.packetengine.co.uk/v1/domains

{
  "domains": [
    {
      "domain": "kohls.com",
      "subdomains_count": 862
    }
  ]
}

Get a specific domain

Retrieve details of a specific domain associated with the authenticated user

GET https://api.packetengine.co.uk/v1/domains/{domain}

{
  "domain": {
    "domain": "kohls.com",
    "subdomains_count": 862
  }
}
{
  "error": "Not found"
}

PreviousAuthenticationNextSubdomains

Last updated 7 months ago