vatapi.com Report : Visit Site


  • Ranking Alexa Global: # 4,875,383

    Server:nginx...

    The main IP address: 178.62.83.181,Your server United Kingdom,London ISP:DigitalOcean London  TLD:com CountryCode:GB

    The description :vat api is an eu vat rates & number validation, vat calculator and vat invoice manager api...

    This report updates in 16-Jun-2018

Created Date:2014-10-21
Changed Date:2016-10-27
Expires Date:2017-10-21

Technical data of the vatapi.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host vatapi.com. Currently, hosted in United Kingdom and its service provider is DigitalOcean London .

Latitude: 51.508529663086
Longitude: -0.12574000656605
Country: United Kingdom (GB)
City: London
Region: England
ISP: DigitalOcean London

the related websites

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called nginx containing the details of what the browser wants and will accept back from the web server.

Content-Length:6893
X-Cache:MISS
Content-Encoding:gzip
Set-Cookie:ci_session=a%3A4%3A%7Bs%3A10%3A%22session_id%22%3Bs%3A32%3A%22fc98356440190457a4dd1fa697596b58%22%3Bs%3A10%3A%22ip_address%22%3Bs%3A11%3A%2245.33.85.57%22%3Bs%3A10%3A%22user_agent%22%3Bs%3A71%3A%22Mozilla%2F5.0+%28compatible%3B+MSIE+10.0%3B+Windows+NT+6.1%3B+WOW64%3B+Trident%2F6.0%29%22%3Bs%3A13%3A%22last_activity%22%3Bi%3A1529096940%3B%7De9fc1ad04e96fd5a59c0609521aa5e511bad2225; expires=Fri, 15-Jun-2018 23:09:00 GMT; Max-Age=7200; path=/
Accept-Ranges:bytes
Vary:Accept-Encoding
Server:nginx
Connection:keep-alive
Date:Fri, 15 Jun 2018 21:09:00 GMT
Content-Type:text/html; charset=UTF-8
Age:0

DNS

soa:ns.mainnameserver.com. hostmaster.mainnameserver.com. 2018041036 10800 600 2419200 3600
ns:ns2.mainnameserver.com.
ns.mainnameserver.com.
ipv4:IP:178.62.83.181
ASN:14061
OWNER:DIGITALOCEAN-ASN - DigitalOcean, LLC, US
Country:EU
mx:MX preference = 10, mail exchanger = inbound-smtp.eu-west-1.amazonaws.com.

HtmlToText

free eu vat rates & number validation api, vat calculator pricing terms of service api console & docs help/support sign in eu vat api a developer friendly api to help your business achieve vat compliance eu vat rates retrieve all eu vat rates using an ip address or country code. currency conversion convert currencies to gbp & eur from any other currency. vat number validation validate vat numbers to determine if your customer is a valid business customer. eu vat invoices easily generate vat invoice data or use our handy auto generated invoices. create your free account now! api functions: ip address lookup country code lookup all vat rates lookup vat number validator currency conversion retrieve invoice request: php <?php $apikey = '0800fc577294c34e0b28ad2839435945'; $ip_address = '212.58.246.90'; $endpoint = 'https://vatapi.com/v1/ip-check?address='.$ip_address; $ch = curl_init(); curl_setopt($ch, curlopt_url, $endpoint); curl_setopt($ch, curlopt_header, 0); curl_setopt($ch, curlopt_httpheader, array('apikey: '.$apikey)); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($ch, curlopt_timeout, 40); $response = curl_exec($ch); curl_close($ch); echo $response; ?> response: json xml { "status": 200, "country_code": "lu", "country": "luxembourg", "vat_applies": true, "rates": { "standard": { "value": 17 }, "reduced": { "value": 8, "applies_to": false }, "reduced_alt": { "value": null, "applies_to": false }, "super_reduced": { "value": 3, "applies_to": "ebooks" }, "parking": { "value": 14, "applies_to": false } } } <?xml version="1.0" encoding="utf-8"?> <xml> <status>200</status> <country_code>lu</country_code> <country>luxembourg</country> <rates> <standard> <value>17</value> </reduced> <reduced> <value>8</value> <applies_to /> </reduced> <reduced_alt> <value>null</value> <applies_to /> </reduced_alt> <super_reduced> <value>3</value> <applies_to>ebooks</applies_to> </super_reduced> <parking> <value>14</value> <applies_to /> </parking> </rates> </xml> request: php <?php $apikey = '0800fc577294c34e0b28ad2839435945'; $code = 'lu'; $endpoint = 'https://vatapi.com/v1/country-code-check?code='.$code; $ch = curl_init(); curl_setopt($ch, curlopt_url, $endpoint); curl_setopt($ch, curlopt_header, 0); curl_setopt($ch, curlopt_httpheader, array('apikey: '.$apikey)); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($ch, curlopt_timeout, 40); $response = curl_exec($ch); curl_close($ch); echo $response; ?> response: json xml { "status": 200, "country_code": "lu", "country": "luxembourg", "vat_applies": true, "rates": { "standard": { "value": 17 }, "reduced": { "value": 8, "applies_to": false }, "reduced_alt": { "value": null, "applies_to": false }, "super_reduced": { "value": 3, "applies_to": "ebooks" }, "parking": { "value": 14, "applies_to": false } } } <?xml version="1.0" encoding="utf-8"?> <xml> <status>200</status> <country_code>lu</country_code> <country>luxembourg</country> <rates> <standard> <value>17</value> </reduced> <reduced> <value>8</value> <applies_to /> </reduced> <reduced_alt> <value>null</value> <applies_to /> </reduced_alt> <super_reduced> <value>3</value> <applies_to>ebooks</applies_to> </super_reduced> <parking> <value>14</value> <applies_to /> </parking> </rates> </xml> request: php <?php $apikey = '0800fc577294c34e0b28ad2839435945'; $endpoint = 'https://vatapi.com/v1/vat-rates'; $ch = curl_init(); curl_setopt($ch, curlopt_url, $endpoint); curl_setopt($ch, curlopt_header, 0); curl_setopt($ch, curlopt_httpheader, array('apikey: '.$apikey)); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($ch, curlopt_timeout, 40); $response = curl_exec($ch); curl_close($ch); echo $response; ?> response: json xml { "status": 200, "countries": [ { "at": { "country": "austria", "rates": { "standard": { "value": 20 }, "reduced": { "value": 10, "applies_to": false }, "reduced_alt": { "value": null, "applies_to": false }, "super_reduced": { "value": null, "applies_to": false }, "parking": { "value": 12, "applies_to": false } } } }, { "be": { "country": "belgium", "rates": { "standard": { "value": 21, } <?xml version="1.0" encoding="utf-8"?> <xml> <status>200</status> <countries> <country> <at> <country>austria</country> <rates> <standard> <value>20</value> </standard> <reduced> <value>10</value> <applies_to>0</applies_to> </reduced> <reduced_alt> <value/> <applies_to>0</applies_to> </reduced_alt> <super_reduced> <value/> <applies_to>0</applies_to> </super_reduced> <parking> <value>12</value> <applies_to>0</applies_to> </parking> </rates> </at> </country> <country> <be> <country>belgium</country> <rates> <standard> <value>21</value> </standard> etc etc... request: php <?php $apikey = '0800fc577294c34e0b28ad2839435945'; $vat_number = 'gb198332378'; $endpoint = 'https://vatapi.com/v1/vat-number-check?vatid='.$vat_number; $ch = curl_init(); curl_setopt($ch, curlopt_url, $endpoint); curl_setopt($ch, curlopt_header, 0); curl_setopt($ch, curlopt_httpheader, array('apikey: '.$apikey)); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($ch, curlopt_timeout, 40); $response = curl_exec($ch); curl_close($ch); echo $response; ?> response: json xml { "status": 200, "countrycode": "gb", "vatnumber": 198332378, "requestdate": "2017-10-30+01:00", "valid": true, "name": "digital goods store ltd", "address": "gresham house\n24 holborn viaduct\nlondon\n\n\nec1a 2bn" } <?xml version="1.0" encoding="utf-8"?> <xml> <status>200</status> <countrycode>gb</countrycode> <vatnumber>333289454</vatnumber> <requestdate>2014-10-30+01:00</requestdate> <valid>1</valid> <name>british broadcasting corporation</name> <address>fao alex fitzpatrick bbc group vat manager the light house (1st floor) media village, 201 wood lane london w12 7tq</address> </xml> request: php <?php $apikey = '0800fc577294c34e0b28ad2839435945'; $currency_from = 'eur'; $currency_to = 'gbp'; $amount = 39.99; $endpoint = 'https://vatapi.com/v1/country-code-check?currency_from='.$currency_from.'&currency_to='.$currency_to.'&amount='.$amount; $ch = curl_init(); curl_setopt($ch, curlopt_url, $endpoint); curl_setopt($ch, curlopt_header, 0); curl_setopt($ch, curlopt_httpheader, array('apikey: '.$apikey)); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($ch, curlopt_timeout, 40); $response = curl_exec($ch); curl_close($ch); echo $response; ?> response: json xml { "status": 200, "currency_from": "eur", "currency_to": "gbp", "amount_from": 39.99, "amount_to": 31.56, "rate": 1.2673 } <?xml version="1.0" encoding="utf-8"?> <xml> <status>200</status> <currency_from>eur</currency_from> <currency_to>gbp</currency_to> <amount_from>39.99</amount_from> <amount_to>31.56</amount_to> <rate>1.2673</rate> </xml> request: php <?php $apikey = '0800fc577294c34e0b28ad2839435945'; $invoice_id = 3023; $endpoint = 'https://vatapi.com/v1/invoice/'.$invoice_id; $ch = curl_init(); curl_setopt($ch, curlopt_url, $endpoint); curl_setopt($ch, curlopt_header, 0); curl_setopt($ch, curlopt_httpheader, array('apikey: '.$apikey)); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($

URL analysis for vatapi.com


https://vatapi.com//#example_retrieve_invoice
https://vatapi.com/terms.pdf
https://vatapi.com//#code_1_json
https://vatapi.com/signup
https://vatapi.com/
https://vatapi.com//#example_country_code
https://vatapi.com//#code_1_xml
https://vatapi.com/invoice/1/1c5a88
https://vatapi.com//#code_3_xml
https://vatapi.com//#code_2_json
https://vatapi.com//#code_3_json
https://vatapi.com//#code_4_xml
https://vatapi.com/console/#!/api/
https://vatapi.com/registrationcertificate.pdf
https://vatapi.com//#example_ip_lookup
gov.uk

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: VATAPI.COM
Registry Domain ID: 1881437314_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.meshdigital.com
Registrar URL: http://www.domainbox.com
Updated Date: 2016-10-27T00:00:00Z
Creation Date: 2014-10-21T00:00:00Z
Registrar Registration Expiration Date: 2017-10-21T00:00:00Z
Registrar: MESH DIGITAL LIMITED
Registrar IANA ID: 1390
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.8779770099
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID:
Registrant Name: Stephen Knott
Registrant Organization: Digital Goods Store Ltd
Registrant Street: International House
Registrant Street: 24 Holborn Viaduct
Registrant City: City of London
Registrant State/Province: London
Registrant Postal Code: EC1A 2BN
Registrant Country: GB
Registrant Phone: +44.3300010501
Registrant Phone Ext:
Registrant Fax Ext:
Registrant Email: [email protected]
Registry Admin ID:
Admin Name: Stephen Knott
Admin Organization: Digital Goods Store Ltd
Admin Street: International House
Admin Street: 24 Holborn Viaduct
Admin City: City of London
Admin State/Province: London
Admin Postal Code: EC1A 2BN
Admin Country: GB
Admin Phone: +44.3300010501
Admin Phone Ext:
Admin Fax Ext:
Admin Email: [email protected]
Registry Tech ID:
Tech Name: Stephen Knott
Tech Organization: Digital Goods Store Ltd
Tech Street: International House
Tech Street: 24 Holborn Viaduct
Tech City: City of London
Tech State/Province: London
Tech Postal Code: EC1A 2BN
Tech Country: GB
Tech Phone: +44.3300010501
Tech Phone Ext:
Tech Fax Ext:
Tech Email: [email protected]
Name Server: ns.mainnameserver.com
Name Server: ns2.mainnameserver.com
DNSSEC: unsigned
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
>>> Last update of WHOIS database: 2017-05-23T10:40:18Z <<<

For more information on Whois status codes, please visit https://icann.org/epp


The Data in this WHOIS database is provided
for information purposes only, and is designed to assist persons in
obtaining information related to domain name registration records.
It's accuracy is not guaranteed. By submitting a
WHOIS query, you agree that you will use this Data only for lawful
purposes and that, under no circumstances will you use this Data to:
(1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail(spam);
or (2) enable high volume, automated, electronic processes that
apply to this WHOIS or any of its related systems. The provider of
this WHOIS reserves the right to modify these terms at any time.
By submitting this query, you agree to abide by this policy.

LACK OF A DOMAIN RECORD IN THE WHOIS DATABASE DOES
NOT INDICATE DOMAIN AVAILABILITY.

  REGISTRAR MESH DIGITAL LIMITED

  REFERRER http://www.meshdigital.com

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =vatapi.com

  PORT 43

  SERVER whois.meshdigital.com

  ARGS vatapi.com

  PORT 43

  TYPE domain

DOMAIN

  NAME vatapi.com

NSERVER

  NS.MAINNAMESERVER.COM 79.170.40.2

  NS2.MAINNAMESERVER.COM 79.170.43.3

STATUS
clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
clientTransferProhibited https://icann.org/epp#clientTransferProhibited
clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited

  CHANGED 2016-10-27

  CREATED 2014-10-21

  EXPIRES 2017-10-21

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uvatapi.com
  • www.7vatapi.com
  • www.hvatapi.com
  • www.kvatapi.com
  • www.jvatapi.com
  • www.ivatapi.com
  • www.8vatapi.com
  • www.yvatapi.com
  • www.vatapiebc.com
  • www.vatapiebc.com
  • www.vatapi3bc.com
  • www.vatapiwbc.com
  • www.vatapisbc.com
  • www.vatapi#bc.com
  • www.vatapidbc.com
  • www.vatapifbc.com
  • www.vatapi&bc.com
  • www.vatapirbc.com
  • www.urlw4ebc.com
  • www.vatapi4bc.com
  • www.vatapic.com
  • www.vatapibc.com
  • www.vatapivc.com
  • www.vatapivbc.com
  • www.vatapivc.com
  • www.vatapi c.com
  • www.vatapi bc.com
  • www.vatapi c.com
  • www.vatapigc.com
  • www.vatapigbc.com
  • www.vatapigc.com
  • www.vatapijc.com
  • www.vatapijbc.com
  • www.vatapijc.com
  • www.vatapinc.com
  • www.vatapinbc.com
  • www.vatapinc.com
  • www.vatapihc.com
  • www.vatapihbc.com
  • www.vatapihc.com
  • www.vatapi.com
  • www.vatapic.com
  • www.vatapix.com
  • www.vatapixc.com
  • www.vatapix.com
  • www.vatapif.com
  • www.vatapifc.com
  • www.vatapif.com
  • www.vatapiv.com
  • www.vatapivc.com
  • www.vatapiv.com
  • www.vatapid.com
  • www.vatapidc.com
  • www.vatapid.com
  • www.vatapicb.com
  • www.vatapicom
  • www.vatapi..com
  • www.vatapi/com
  • www.vatapi/.com
  • www.vatapi./com
  • www.vatapincom
  • www.vatapin.com
  • www.vatapi.ncom
  • www.vatapi;com
  • www.vatapi;.com
  • www.vatapi.;com
  • www.vatapilcom
  • www.vatapil.com
  • www.vatapi.lcom
  • www.vatapi com
  • www.vatapi .com
  • www.vatapi. com
  • www.vatapi,com
  • www.vatapi,.com
  • www.vatapi.,com
  • www.vatapimcom
  • www.vatapim.com
  • www.vatapi.mcom
  • www.vatapi.ccom
  • www.vatapi.om
  • www.vatapi.ccom
  • www.vatapi.xom
  • www.vatapi.xcom
  • www.vatapi.cxom
  • www.vatapi.fom
  • www.vatapi.fcom
  • www.vatapi.cfom
  • www.vatapi.vom
  • www.vatapi.vcom
  • www.vatapi.cvom
  • www.vatapi.dom
  • www.vatapi.dcom
  • www.vatapi.cdom
  • www.vatapic.om
  • www.vatapi.cm
  • www.vatapi.coom
  • www.vatapi.cpm
  • www.vatapi.cpom
  • www.vatapi.copm
  • www.vatapi.cim
  • www.vatapi.ciom
  • www.vatapi.coim
  • www.vatapi.ckm
  • www.vatapi.ckom
  • www.vatapi.cokm
  • www.vatapi.clm
  • www.vatapi.clom
  • www.vatapi.colm
  • www.vatapi.c0m
  • www.vatapi.c0om
  • www.vatapi.co0m
  • www.vatapi.c:m
  • www.vatapi.c:om
  • www.vatapi.co:m
  • www.vatapi.c9m
  • www.vatapi.c9om
  • www.vatapi.co9m
  • www.vatapi.ocm
  • www.vatapi.co
  • vatapi.comm
  • www.vatapi.con
  • www.vatapi.conm
  • vatapi.comn
  • www.vatapi.col
  • www.vatapi.colm
  • vatapi.coml
  • www.vatapi.co
  • www.vatapi.co m
  • vatapi.com
  • www.vatapi.cok
  • www.vatapi.cokm
  • vatapi.comk
  • www.vatapi.co,
  • www.vatapi.co,m
  • vatapi.com,
  • www.vatapi.coj
  • www.vatapi.cojm
  • vatapi.comj
  • www.vatapi.cmo
Show All Mistakes Hide All Mistakes