Table of Contents

Function

The order type DomainPremiumTLDList inquires the number of available premium domains. The task is currently only supported by XML.

You can find more information about list queries here

Description

Task code: 01605
Uses Domain object

Keywords

The following keywords are returned by default:

  • name = TLD
  • count = Number of found Premium Domains

All premium domains (max. 1000) , sorted in ascending alphabetical order.

Request
<request>
	<auth>
		<user>customer</user>
		<password>password</password>
		<context>4</context>
	</auth>
	<task>
		<code>01605</code>
		<view>
			<offset>0</offset>
			<limit>1000</limit>
		</view>
		<order>
			<key>name</key>
			<mode>asc</mode>
		</order>
	</task>
</request>
Response
<response>
	<result>
		<data>
			<summary>5</summary>
			<tld_premium>
				<name>accountants</name>
				<count>27</count>
			</tld_premium>
			<tld_premium>
				<name>bike</name>
				<count>4251</count>
			</tld_premium>
			<tld_premium>
				<name>repair</name>
				<count>497</count>
			</tld_premium>
			<tld_premium>
				<name>space</name>
				<count>354</count>
			</tld_premium>
			<tld_premium>
				<name>versicherung</name>
				<count>591</count>
			</tld_premium>
			<tld_premium></data>
			<status>
				<code>S01605</code>
				<text>The premium TLD data is inquired successfully.</text>
				<type>success</type>
			</status>
		</result>
		<stid>20160428-app2-dev-2942</stid>
	</response>

 All Premium TLDs with .care and .dance; sorted in ascending order.

Request
<request>
	<auth>
		<user>customer</user>
		<password>password</password>
		<context>4</context>
		</auth
		<task>
			<code>01605</code>
			<view>
				<offset>0</offset>
				<limit>10</limit>
			</view>
			<where>
				<and>
					<or>
						<key>name</key>
						<operator>like</operator>
						<value>care</value>
					</or>
					<or>
						<key>name</key>
						<operator>eq</operator>
						<value>dance</value>
					</or>
				</and>
			</where>
			<order>
				<key>name</key>
				<mode>asc</mode>
			</order>
		</task>
	</request>
Response
<response>
	<result>
		<data>
			<summary>2</summary>
			<tld_premium>
				<name>care</name>
				<count>4610</count>
			</tld_premium>
			<tld_premium>
				<name>dance</name>
				<count>7365</count>
			</tld_premium>
		</data>
		<status>
			<code>S01605</code>
			<text>The premium TLD data is inquired successfully./text>
			<type>success</type>
		</status>
	</result>
	<stid>20161123-app1-dev-6511</stid>
</response>

Search for all premium domains in the price range Donuts-BBBB

Request
<request>
	<auth>
		<user>customer</user>
		<password>password</password>
		<context>4</context>
	</auth>
	<task>
		<code>0165</code>
		<view>
			<children>1</children>
			<offset>0</offset>
			<limit>3</limit>
		</view>
		<where>
			<and>
				<key>price_class</key>
				<operator>eq</operator>
				<value>Donuts-BBBB</value>
			</and>
		</where>
		<order>
			<key>name</key>
			<mode>asc</mode>
		</order>
	</task>
</request>
Response
<response>
	<result>
		<data>
			<summary>21061</summary>
			<domain_premium>
				<name>000.accountants</name>
				<price_class>DONUTS-BBBB</price_class>
				<status>FREE</status>
				<provider>registry</provider>
				<owner>
					<user>support</user>
					<context>4</context>
				</owner>
				<id>817298</id>
				<created>2015-01-26 13:44:14</created>
				<updated>2015-01-30 04:15:03</updated>
			</domain_premium>
			<domain_premium>
				<name>000.engineering</name>
				<price_class>DONUTS-BBBB</price_class>
				<status>FREE</status>
				<provider>registry</provider>
				<owner>
					<user>support</user>
					<context>4</context>
				</owner>
				<id>552436</id>
				<created>2014-08-27 15:45:34</created>
				<updated>2015-01-31 20:56:51</updated>
			</domain_premium>
			<domain_premium>
				<name>000.limited</name>
				<price_class>DONUTS-BBBB</price_class>
				<status>FREE</status>
				<provider>registry</provider>
				<owner>
					<user>support</user>
					<context>4</context>
				</owner>
				<id>624113</id>
				<created>2014-08-27 15:46:21</created>
				<updated>2015-02-01 13:37:55</updated>
			</domain_premium>
		</data>
		<status>
			<code>S0165</code>
			<text>Die Premium-Domains wurden erfolgreich ermittelt.</text>
			<type>success</type>
		</status>
	</result>
	<stid>20150202-app2-dev-2661</stid>
</response>

All premium domains with price class DONUTS-A+, sorted in ascending order.

Request
<request>
	<auth>
		<user>customer</user>
		<password>password</password>
		<context>4</context>
		</auth
		<task>
			<code>01605</code>
			<view>
				<offset>0</offset>
				<limit>10</limit>
			</view>
			<where>
				<key>price_class</key>
				<operator>eq</operator>
				<value>DONUTS-A+</value>
			</where>
			<order>
				<key>name</key>
				<mode>asc</mode>
			</order>
			<key>price_class</key>
		</task>
	</request>