# Name.com Integration via LowCodeAPI

**Last Updated**: February 10, 2026

## Overview
Domain registration

**Categories:**
- {'id': 'domain-hosting', 'name': 'Domain & Hosting'}

## Base Endpoint
https://api.lowcodeapi.com/name

**Important**: Always include the provider name in the URL path after `api.lowcodeapi.com/`

## Authentication
**Type:** TOKEN

**Official Documentation:** https://www.name.com/api-docs

## URL Format (Important)

LowCodeAPI supports two URL formats. **Always try the New Format first**, then fall back to Old Format if needed.

### New Format (Priority)
- Path parameters stay in the URL path
- Do NOT include path parameters as query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/{id}?api_token=XXX`

### Old Format (Fallback)
- Path parameters become query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/id?id={id}&api_token=XXX`

### Decision Flow for AI Agents
1. Always use **New Format** first - keep path parameters in the URL path
2. If you get a 404 or error, try **Old Format** with sanitized path
3. Log which format worked for future requests to this provider

## API Categories

## Common Endpoints

### List all the domain records

**Method:** GET
**LowCodeAPI Path:** /v4/domains/{domainName}/records

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains/{domainName}/records?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains/domainname/records?domainName={domainName}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| domainName | string |  |

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| page | number |  |
| perPage | number |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/name/v4/domains/{domainName}/records?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/dns#ListRecords

### Get Individual record details

**Method:** GET
**LowCodeAPI Path:** /v4/domains/{domainName}/records/{id}

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains/{domainName}/records/{id}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains/domainname/records/id?domainName={domainName}&id={id}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| domainName | string |  |
| id | number |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/name/v4/domains/{domainName}/records/{id}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/dns#GetRecord

### Creates new record of the domain

**Method:** POST
**LowCodeAPI Path:** /v4/domains/{domainName}/records

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains/{domainName}/records?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains/domainname/records?domainName={domainName}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| domainName | string |  |

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| type | string |  |
| answer | string |  |
| host | string |  |
| priority | number |  |
| ttl | number |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/name/v4/domains/{domainName}/records?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/dns#CreateRecord

### Replace old record with new

**Method:** PUT
**LowCodeAPI Path:** /v4/domains/{domainName}/records/{id}

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains/{domainName}/records/{id}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains/domainname/records/id?domainName={domainName}&id={id}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| domainName | string |  |
| id | number |  |

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| type | string |  |
| answer | string |  |
| fqdn | string |  |
| host | string |  |
| priority | number |  |
| ttl | number |  |

**Example Request (New Format):**

```bash
curl -X PUT 'https://api.lowcodeapi.com/name/v4/domains/{domainName}/records/{id}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/dns#UpdateRecord

### Delete domain record from zone

**Method:** DELETE
**LowCodeAPI Path:** /v4/domains/{domainName}/records/{id}

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains/{domainName}/records/{id}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains/domainname/records/id?domainName={domainName}&id={id}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| domainName | string |  |
| id | number |  |

**Example Request (New Format):**

```bash
curl -X DELETE 'https://api.lowcodeapi.com/name/v4/domains/{domainName}/records/{id}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/dns#DeleteRecord

### DNSSEC keys listed by registry

**Method:** GET
**LowCodeAPI Path:** /v4/domains/{domainName}/dnssec

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains/{domainName}/dnssec?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains/domainname/dnssec?domainName={domainName}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| domainName | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/name/v4/domains/{domainName}/dnssec?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/dnssecs#ListDNSSECs

### Retrieve registered key details from registry

**Method:** GET
**LowCodeAPI Path:** /v4/domains/dnssec/{digest}

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains/dnssec/{digest}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains/dnssec/digest?digest={digest}&domainName={domainName}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| digest | string |  |
| domainName | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/name/v4/domains/dnssec/{digest}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/dnssecs#GetDNSSEC

### DNSSEC key registration with registry

**Method:** POST
**LowCodeAPI Path:** /v4/domains/dnssec

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains/dnssec?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains/dnssec?domainName={domainName}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| domainName | string |  |

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| algorithm | number |  |
| digest | string |  |
| digestType | number |  |
| keyTag | number |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/name/v4/domains/dnssec?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/dnssecs#CreateDNSSEC

### DNSSEC key removal from registry

**Method:** DELETE
**LowCodeAPI Path:** /v4/domains/dnssec/{digest}

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains/dnssec/{digest}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains/dnssec/digest?digest={digest}&domainName={domainName}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| digest | string |  |
| domainName | string |  |

**Example Request (New Format):**

```bash
curl -X DELETE 'https://api.lowcodeapi.com/name/v4/domains/dnssec/{digest}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/dnssecs#DeleteDNSSEC

### Buy a new domain

**Method:** POST
**LowCodeAPI Path:** /v4/domains

**New Format URL:**
https://api.lowcodeapi.com/name/v4/domains?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/name/v4/domains?api_token=YOUR_API_TOKEN

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| domain | object |  |
| purchasePrice | number |  |
| purchaseType | string |  |
| years | number |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/name/v4/domains?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://www.name.com/api-docs/domains#CreateDomain


## Usage Examples

### Example 1: Basic API Request (New Format)

Making a simple GET request to retrieve resources:

```bash
# Get a list of resources - no path parameters needed
curl -X GET "https://api.lowcodeapi.com/name/endpoint?api_token=YOUR_API_TOKEN"
```

### Example 2: Request with Path Parameters (New Format)

Retrieving a specific resource using its ID:

```bash
# Get specific resource by ID - replace RESOURCE_ID with actual ID from previous response
curl -X GET "https://api.lowcodeapi.com/name/endpoint/{RESOURCE_ID}?api_token=YOUR_API_TOKEN"
# Note: RESOURCE_ID typically comes from a previous list request or from the provider dashboard
```

### Example 3: POST Request with Body (New Format)

Creating a new resource:

```bash
# Create a new resource
curl -X POST "https://api.lowcodeapi.com/name/endpoint?api_token=YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"field": "value", "another_field": "another_value"}'
```

## Error Handling

LowCodeAPI returns standard HTTP status codes. Common errors:

| Status Code | Description |
|-------------|-------------|
| 200 | Success - Request completed successfully |
| 400 | Bad Request - Invalid parameters or request body |
| 401 | Unauthorized - Invalid or missing API token |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found - Endpoint or resource doesn't exist |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Server Error - Provider API error |

All error responses include error details:

```json
{
  "data": {
    "error": {
      "message": "Error description",
      "code": "ERROR_CODE"
    }
  }
}
```

## Complete Endpoint Reference

| Endpoint | Method | Category |
|----------|--------|----------|
| List all the domain records | GET | DNS |
| Get Individual record details | GET | DNS |
| Creates new record of the domain | POST | DNS |
| Replace old record with new | PUT | DNS |
| Delete domain record from zone | DELETE | DNS |
| DNSSEC keys listed by registry | GET | DNSSEC  |
| Retrieve registered key details from registry | GET | DNSSEC  |
| DNSSEC key registration with registry | POST | DNSSEC  |
| DNSSEC key removal from registry | DELETE | DNSSEC  |
| Buy a new domain | POST | Domain |
| Domain availability check for purchase | POST | Domain |
| Search domain name | POST | Domain |
| Get price of the domain | GET | Domain |
| User-owned domain list API | GET | Domain |
| Get details about a specific domain | GET | Domain |
| Enables the domain to be private | POST | Domain |
| Disables domain privacy | POST | Domain |
| Automated domain renewal enabled | POST | Domain |
| Disables automatic renewals | POST | Domain |
| Renew a domain | POST | Domain |
| Domain Transfer Authorization Code Retrieval | GET | Domain |
| Add Privacy protection to a domain | POST | Domain |
| Set the nameservers for the Domain | POST | Domain |
| Set the contacts for the Domain | POST | Domain |
| Lock a domain | POST | Domain |
| Unlock a domain | POST | Domain |
| Return JSON-encoded SearchResults from registry | POST | Domain |
| List paginated email forwarding entries | GET | EmailForwarding  |
| Email forwarding entry returned by GetEmailForward... | GET | EmailForwarding  |
| Creates an email forwarding entry | POST | EmailForwarding  |
| UpdateEmailForwarding changes forwarded email addr... | PUT | EmailForwarding  |
| Deletes email forwarding entry | DELETE | EmailForwarding  |
| Returns some information about the API server | GET | Hello |
| Retrieve account's orders with ListOrders | GET | Order |
| Order details retrieval using GetOrder | GET | Order |
| Pending transfer requests listed by ListTransfers | GET | Transfer |
| GetTransfer gets details for a transfer request | GET | Transfer |
| Purchases a new domain transfer request | POST | Transfer |
| Refunds and cancels pending transfer | POST | Transfer |
| Paginated URL forwarding entries for domain | GET | URLForwarding |
| Returns an URL forwarding entry | GET | URLForwarding |
| Create URL Forwarding Entry | POST | URLForwarding |
| Update URL Forwarding for Host | PUT | URLForwarding |
| Deletes the URL forwarding entry | DELETE | URLForwarding |
| List registered nameservers with the registry | GET | VanityNameserver |
| Retrieve details of registered vanity nameserver | GET | VanityNameserver |
| Register nameserver with the registry | POST | VanityNameserver |
| Update glue record IP addresses at the registry | PUT | VanityNameserver |
| Unregister nameserver from registry | DELETE | VanityNameserver |

## API Definition Endpoints

You can fetch the complete API specification for this provider:

**New Format (OpenAPI spec):**
```bash
curl 'https://backend.lowcodeapi.com/name/openapi'
```

**Old Format (API definition):**
```bash
curl 'https://backend.lowcodeapi.com/name/definition'
```

## Response Format

All responses are wrapped in a `data` key:

```json
{
  "data": {
    // Actual response from provider (object or array)
  }
}
```