MijnPartnerGroep Domain API
Home
MijnPartnerGroep.nl
Ondersteunde Partners
Ondersteunde Partners
  • MijnHostingPartner.nl
  • MijnDomeinPartner.nl
  • MijnWordPressPartner.nl
  • WebHoster.nl
Home
MijnPartnerGroep.nl
Ondersteunde Partners
Ondersteunde Partners
  • MijnHostingPartner.nl
  • MijnDomeinPartner.nl
  • MijnWordPressPartner.nl
  • WebHoster.nl
  1. Whois
  • Home
  • Authentication
  • Getting started
  • Error handling
  • Authentication
    • Authenticate to the API
      POST
  • Whois
    • Check WHOIS for a single domain
      GET
    • Check WHOIS for multiple domains
      POST
  • Domain
    • Register a single domain
      POST
    • Register multiple domains
      POST
  • DomainHolder
    • Create a new DomainHolder
      PUT
    • Get a DomainHolder by ID or email address
      POST
    • Delete a DomainHolder
      DELETE
    • Update an existing DomainHolder
      PATCH
  • DNS
    • ListDomain
      GET
    • GetRecords
      GET
    • AddRecord
      PUT
    • UpdateRecord
      PATCH
    • DeleteRecord
      POST
  • Schemas
    • Schemas
      • DomainHolderSearch
      • Record
      • Domain
      • Zones
      • DomainHolder
      • BulkRegisterRequest
    • Response
      • AuthenticationSuccess
      • AuthorizationFailed
      • BadRequest
      • PaymentRequired
      • Unauthorized
      • NotFound
      • MethodNotAllowed
      • UnprocessableEntity
      • InternalServerError
  1. Whois

Check WHOIS for a single domain

GET
https://www.mijnhostingpartner.nl/v2/whois/{domain}
Retrieve WHOIS information for a specific domain.
Request Body:
None (domain is passed in the URL path).
Response:
HTTP 200 – domain WHOIS data returned as JSON.
HTTP 404 – domain not found or unavailable.
Use Case:
Look up registration details for a single domain.
Notes:
Useful for validating domain status and registration metadata.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200OK
application/json
WHOIS status for the domain
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠422Unprocessable Entity
🟠404Not Found
🔴500Internal Server Error
🟠405Method Not Allowed
🟠402Payment Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://www.mijnhostingpartner.nl/v2/whois/{{$internet.domainName}}' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "example.com": true
}
Modified at 2026-03-30 11:29:48
Previous
Authenticate to the API
Next
Check WHOIS for multiple domains
Built with