Batch create DNS records
API Docs with browser clientCreate multiple DNS records in a single transaction. Requires domain ownership. All records will be validated together against DNS zone rules.
In: header
Header Parameters
Optional delegated account address to authenticate as when the signer is an approved signer. Preferred header name.
Legacy alias for x-namefi-erc1271-account. When multiple delegated account headers are present, x-namefi-eip7702-account takes precedence, then x-namefi-erc1271-account.
Optional delegated account address to authenticate as when the signer is an approved signer. Preferred ERC-1271 header name.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://api.namefi.dev/v-next/dns/records/batch" \ -H "Content-Type: application/json" \ -d '{ "payloadType": "CreateRecords", "payload": { "records": [ { "type": "A", "name": "string", "ttl": 2147483647, "rdata": "192.168.0.1" } ], "zoneName": "string" }, "timestamp": 0, "nonce": "string" }'[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"zoneName": "string",
"name": "string",
"type": "A",
"class": "string",
"ttl": -2147483648,
"rdata": "string",
"metadata": "string",
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
}
]{
"defined": true,
"code": "BAD_REQUEST",
"status": 400,
"message": "Bad Request",
"data": null
}{
"defined": true,
"code": "UNAUTHORIZED",
"status": 401,
"message": "Unauthorized",
"data": null
}{
"defined": true,
"code": "PAYMENT_REQUIRED",
"status": 402,
"message": "Payment Required",
"data": null
}{
"defined": true,
"code": "FORBIDDEN",
"status": 403,
"message": "Forbidden",
"data": null
}{
"defined": true,
"code": "NOT_FOUND",
"status": 404,
"message": "Not Found",
"data": null
}{
"defined": true,
"code": "NOT_ACCEPTABLE",
"status": 406,
"message": "Not Acceptable",
"data": null
}{
"defined": true,
"code": "TIMEOUT",
"status": 408,
"message": "Request Timeout",
"data": null
}{
"defined": true,
"code": "CONFLICT",
"status": 409,
"message": "Conflict",
"data": null
}{
"defined": true,
"code": "PRECONDITION_FAILED",
"status": 412,
"message": "Precondition Failed",
"data": null
}{
"defined": true,
"code": "TOO_MANY_REQUESTS",
"status": 429,
"message": "Too Many Requests",
"data": null
}{
"defined": true,
"code": "INTERNAL_SERVER_ERROR",
"status": 500,
"message": "Internal Server Error",
"data": null
}Instant Register domain With X402 GET
Purchase a single domain instantly without adding to cart. Validates domain availability, creates payments and order, then starts the order processing workflow.
Batch delete DNS records DELETE
Delete multiple DNS records by their IDs in a single transaction. Requires domain ownership. The zone will be validated after deletion.