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 multiple domains

POST
https://www.mijnhostingpartner.nl/v2/whois/
Retrieve WHOIS information for several domains in one request.
Request Body:
JSON array of domain strings, e.g. ["example.com", "example.net"].
Response:
HTTP 200 – WHOIS data for all domains returned.
HTTP 207 – partial success if some domains fail, with details per domain.
Use Case:
Batch WHOIS lookup to check many domains at once.
Notes:
The response should include per-domain status and data.

Request

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

Responses

🟢200OK
application/json
WHOIS results for multiple domains
Body

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