Skip to content

The Namecheap API allows developers to easily interact with Namecheap's domain registration and management services. The goal is to provide a simple and intuitive interface for performing common tasks such as registering domains, managing DNS settings, and handling SSL certificates.

License

Notifications You must be signed in to change notification settings

Akuqt/namecheap-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

26ba89e · Feb 22, 2025

History

57 Commits
Feb 22, 2025
Feb 15, 2025
Feb 22, 2025
Feb 15, 2025
Feb 15, 2025
Feb 15, 2025
Feb 15, 2025
Feb 22, 2025
Feb 15, 2025
Feb 15, 2025
Feb 15, 2025
Feb 22, 2025
Feb 15, 2025
Feb 22, 2025
Feb 15, 2025
Feb 15, 2025

Repository files navigation

Namecheap API Project

The Namecheap API allow developers to easily interact with Namecheap's domain registration and management services. The goal is to provide a simple and intuitive interface for performing common tasks such as registering domains, managing DNS settings, and handling SSL certificates.

Features

  • Domain registration and renewal
  • DNS management
  • SSL certificate management
  • Account balance and transaction history

Installation

To install the package, use the following command:

npm install namecheap-api-client
yarn add namecheap-api-client

Usage

Here is a basic example of how to use the API:

import { NameCheap } from "namecheap-api-client";

const namecheap = new NameCheap({
  apiKey: "<...api key...>",
  apiUser: "user",
  clientIP: "127.0.0.1",
  username: "user",
});

const res = await namecheap.query("domains.dns.getHosts", {
  SLD: "example",
  TLD: "com",
});

console.log(res.ApiResponse.CommandResponse.DomainDNSGetHostsResult);

License

This project is licensed under the MIT License. See the LICENSE file for details.

About

The Namecheap API allows developers to easily interact with Namecheap's domain registration and management services. The goal is to provide a simple and intuitive interface for performing common tasks such as registering domains, managing DNS settings, and handling SSL certificates.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published