GithubHelp home page GithubHelp logo

namecheap's Introduction

Namecheap API

Namecheap is a domain registrar. This API is a wrapper for the Namecheap web API, each command is mapped one-to-one with a Class and Method. For example, registering a domain requires the namecheap.domains.create API command, which is executed via NamecheapDomains::create().

Requirements

  • PHP 5.1.3 or greater

Using the API

<?php
require_once "namecheap_api.php";

$user = "YOUR_NAMECHEAP_USER"; // Username required to access the API 
$key = "YOUR_NAMECHEAP_KEY"; // Password required used to access the API 
$sandbox = true; // true for testing, false for live
$username = null; // The Username on which a command is executed.Generally, the values of ApiUser and UserName parameters are the same. 

$api = new NamecheapApi($user, $key, $sandbox, $username);

// Create a new instance of the command class we want to use
$domains = new NamecheapDomains($api);

$vars = array('DomainList' => "mydomain.com");

print_r($domains->check($vars)->response());
?>

namecheap's People

Contributors

clphillips avatar davidgoodwin avatar eblount avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.