Sekundärmarkt
Verwalten Sie Ihr Portfolio
Ausgelaufene Domains| Method | Description |
|---|---|
| GET | GET Request: Retrieve detailed information about a specified resource |
| POST | POST Request: Create a new resource |
| PUT | PUT Request: Fully update the specified resource |
| DELETE | DELETE Request: Remove the specified resource |
apiKey + "\n" + fullPathAndQuery + "\n" + (xRequestId or empty String) + "\n" + (requestBody or empty String)
apiKey = "your_api_key"
fullPathAndQuery = "/v2/some/endpoint?param=value"
xRequestId = "unique-request-id"
requestBody = "{\"key\":\"value\"}"
stringToSign = "your_api_key\n/v2/some/endpoint?param=value\nunique-request-id\n{\"key\":\"value\"}"
{
"domainName": "domain.com",
"showPrice": "yes",
"currency": "USD"
}
{
"Code": 200,
"Message": "Success",
"Data": {}
}
webhookKey + "\n" + fullPathAndQuery + "\n" + (xRequestId or empty String) + "\n" + (requestBody or empty String)
webhookKey = "your_webhook_key"
fullPathAndQuery = "/v2/some/endpoint?param=value"
xRequestId = "unique-request-id"
requestBody = "{\"key\":\"value\"}"
stringToSign = "your_webhook_key\n/v2/some/endpoint?param=value\nunique-request-id\n{\"key\":\"value\"}"
{
"Event": "domain_registration",
"EventId": 12345,
"Timestamp": "2022-01-01T12:00:00Z",
"Data": {
"DomainName": "example.com",
"RegistrationDate": "2022-01-01",
"ExpirationDate": "2023-01-01",
"Registrant": {
"Name": "JohnDoe",
"Email": "[email protected]",
"Phone": "+1.1234567890"
}
}
}
| Parameter | Description |
|---|---|
| Event | The type of event that triggered the notification. |
| EventId | The id of the event that triggered the notification. |
| Timestamp | The timestamp when the event occurred. |
| Data | The data associated with the event. |
{
"EventId": 123,
"Status": "200",
"Message": "Success"
}
| Price level | Thread Count | Rate Limit |
|---|---|---|
| Regular | 1 thread | 60/min (1/sec) |
| Bulk | 5 threads | 600/min (10/sec) |
| Super Bulk | 25 threads | 6000/min (100/sec) |
<Response>
<status>
<code>429</code>
<message>Too Many Requests</message>
</status>
<error>
<description>You have reached the maximum allowed requests within the concurrent limit of your account. Please try again later.</description>
</error>
</Response>
{
"code": 429,
"message": "Too Many Requests",
"error": {
"description": "You have reached the maximum allowed requests within the concurrent limit of your account. Please try again later."
}
}
