api.dinhosting.fr rapport :   Visitez le site


  • Titre:din'hosting - api - hébergement mutualisé php / mysql / mails

    La description :api din'hosting - français - v 1.15.00 www.dinhosting.fr les 36 fonctions suivantes sont disponibles : login logout dediednsajouter dediednsliste dediednsretirer dedieliste dediemonitoringetat domaine...

    Classement Alexa Global: # 1,707,829

    Server:Apache/2.2.22 (Debia...
    X-Powered-By:PHP/5.4.45-0+deb7u2

    L'adresse IP principale: 80.248.216.44,Votre serveur France,Paris ISP:DINOVATION Servers Subnet  TLD:fr Code postal:fr

    Ce rapport est mis à jour en 23-Aug-2018

Created Date:2007-11-19
Changed Date:2019-10-08
Expires Date:2020-10-09

Données techniques du api.dinhosting.fr


Geo IP vous fournit comme la latitude, la longitude et l'ISP (Internet Service Provider) etc. informations. Notre service GeoIP a trouvé l'hôte api.dinhosting.fr.Actuellement, hébergé dans France et son fournisseur de services est DINOVATION Servers Subnet .

Latitude: 48.853408813477
Longitude: 2.348799943924
Pays: France (fr)
Ville: Paris
Région: Ile-de-France
ISP: DINOVATION Servers Subnet

the related websites

domaine Titre
api.dinhosting.fr din'hosting - api - hébergement mutualisé php / mysql / mails
data.rte-france.com catalogue api - api data rte
dev.viamichelin.fr api itinéraire et géolocalisation – api viamichelin
api.archives-ouvertes.fr documentation api-hal | api archive ouverte hal
api-preprod.archives-ouvertes.fr documentation api-hal | api archive ouverte hal
commande.easy-hebergement.fr hébergement site web en france | hébergeur internet easy-hébergement
clair-matin.ufcv.fr hébergement - clair matin | hébergement de groupes en auvergne
hebergement.alterway.fr alter way hébergement i hébergement web open source haute disponibilité, infogérance, cloud, devops,
secure.arsys.fr hébergement web, serveurs dédiés, enregistrement de domaines, hosting, hébergement, - arsys.fr
hebergement.byhexanet.fr hébergement serveurs dédiés et virtuels | l'hébergement by hexanet
bire.unblog.fr api
api-est.e-monsite.com api-est
apicarto.ign.fr api carto
plateforme.api-agro.fr api-agro
alignapi.gforge.inria.fr alignment api
    api-restauration.com api-france.com api-est.e-monsite.com api-orpi.com mylubricants.com apiways.com apigroupe.com pomdapi.fr radiopommedapi.com unifrance.org traildesmouettes.fr cbanque.com alloforain.com info-algerie.com dominaland.com sexeintime.com regimesmaigrir.com exercice.takatrouver.net rdv-rapide.fr linternaute.com 

Analyse d'en-tête HTTP


Les informations d'en-tête HTTP font partie du protocole HTTP que le navigateur d'un utilisateur envoie à appelé Apache/2.2.22 (Debian) contenant les détails de ce que le navigateur veut et acceptera de nouveau du serveur Web.

Content-Length:20704
X-Powered-By:PHP/5.4.45-0+deb7u2
Content-Encoding:gzip
Vary:Accept-Encoding
Keep-Alive:timeout=5, max=100
Server:Apache/2.2.22 (Debian)
Connection:Keep-Alive
Date:Thu, 23 Aug 2018 14:13:09 GMT
Content-Type:text/html

DNS

ipv4:IP:80.248.216.44
ASN:13193
OWNER:ASN-NERIM, FR
Country:FR

HtmlToText

api din'hosting - français - v 1.15.00 www.dinhosting.fr les 36 fonctions suivantes sont disponibles : login logout dediednsajouter dediednsliste dediednsretirer dedieliste dediemonitoringetat domainedispo domainednsajouter domainednsliste domainednsmodifier domainednsretirer ippays mutualisecronajouter mutualisecronmodifier mutualisecronliste mutualisecronlog mutualisecronretirer mutualisedetail mutualisedetailmysql mutualisedomaineliste mutualiseliste mutualisemailcreer mutualisemailliste mutualisemailmodifier mutualisemailretirer mutualisemysqldump mutualisesousdomaineajouter mutualisesousdomaineliste mutualisesousdomaineretirer smscreer smsenvoi smsinfocredit smsliste smslisteenvois smstransfert fichiers wsdl https://api.dinhosting.fr/api.wsdl http://api.dinhosting.fr/api.wsdl attention vous devez posséder un compte sur le panel din'hosting pour utiliser l'api l'utilisation de l'api doit être activée sur votre compte il est préférable d'utiliser la version sécurisée de l'api la plus grande majorité des actions se font sans aucune demande de confirmation . faites des tests sur des données non sensibles. string login ( string $login, string $pass ) permet de se loguer à l'api en utilisant vos identifiants de connexion au panel code php5 | code perl <?php $login = "xxx-din" ; $pass = "xxxxxxx" ; try { $client = new soapclient ( "https://api.dinhosting.fr/api.wsdl" , array( "trace" => 1 , "soap_version" => soap_1_1 )); $session = $client -> login ( $login , $pass ); if ( $session != false ) { echo "connexion effectuée avec succès<br />" ; } } catch ( soapfault $fault ) { echo $fault ; } ?> #!/usr/bin/perl use strict ; use warnings ; use soap :: lite ; my $login = "xxx-din" ; my $pass = "xxxxxxx" ; my $session ; my $client = soap :: lite -> uri ( "https://api.dinhosting.fr/api.wsdl" ) -> proxy ( "https://api.dinhosting.fr/" ); my $result = $client -> login ( $login , $pass ); if ( $result -> result ) { $session = $result -> result ; print "connexion effectuée avec succès\n" ; } boolean logout ( string $session ) permet de se déloguer de l'api et de détruire la session code php5 | code perl <?php $login = "xxx-din" ; $pass = "xxxxxxx" ; try { $client = new soapclient ( "https://api.dinhosting.fr/api.wsdl" , array( "trace" => 1 , "soap_version" => soap_1_1 )); $session = $client -> login ( $login , $pass ); if ( $session != false ) { echo "connexion effectuée avec succès<br />" ; } $logout = $client -> logout ( $session ); if ( $logout != false ) { echo "déconnexion effectuée avec succès<br />" ; } } catch ( soapfault $fault ) { echo $fault ; } ?> #!/usr/bin/perl use strict ; use warnings ; use soap :: lite ; my $login = "xxx-din" ; my $pass = "xxxxxxx" ; my $session ; my $client = soap :: lite -> uri ( "https://api.dinhosting.fr/api.wsdl" ) -> proxy ( "https://api.dinhosting.fr/" ); my $result = $client -> login ( $login , $pass ); if ( $result -> result ) { $session = $result -> result ; print "connexion effectuée avec succès\n" ; } my $logout = $client -> logout ( $session ); if ( $logout -> result ) { print "déconnexion effectuée avec succès\n" ; } boolean dediednsajouter ( string $session, string $compte, string $domaine ) ajoute un domaine au ns2 din'hosting, utilisé par les locataires de serveurs dédiés ou les propriétaires de serveurs en colocation. code php5 | code perl <?php $login = "xxx-din" ; $pass = "xxxxxxx" ; $compte = "moncompte" ; $domaine = "mondomaine.tld" , try { $client = new soapclient ( "https://api.dinhosting.fr/api.wsdl" , array( "trace" => 1 , "soap_version" => soap_1_1 )); $session = $client -> login ( $login , $pass ); if ( $session != false ) { echo "connexion effectuée avec succès<br />" ; } $dediednsajouter = $client -> dediednsajouter ( $session , $compte , $domaine ); if ( $dediednsajouter != false ) { echo "ajout effectué avec succès<br />" ; } $logout = $client -> logout ( $session ); if ( $logout != false ) { echo "déconnexion effectuée avec succès<br />" ; } } catch ( soapfault $fault ) { echo $fault ; } ?> a venir array dediednsliste ( string $session, string $compte ) liste les domaines du compte gérés par le ns2 din'hosting, utilisé par les locataires de serveurs dédiés ou les propriétaires de serveurs en colocation. code php5 | code perl <?php $login = "xxx-din" ; $pass = "xxxxxxx" ; $compte = "moncompte" ; try { $client = new soapclient ( "https://api.dinhosting.fr/api.wsdl" , array( "trace" => 1 , "soap_version" => soap_1_1 )); $session = $client -> login ( $login , $pass ); if ( $session != false ) { echo "connexion effectuée avec succès<br />" ; } $dediednsliste = $client -> dediednsliste ( $session , $compte ); if ( $dediednsliste !== false ) { echo "<pre>" ; print_r ( $dediednsliste ); echo "</pre>" ; } $logout = $client -> logout ( $session ); if ( $logout != false ) { echo "déconnexion effectuée avec succès<br />" ; } } catch ( soapfault $fault ) { echo $fault ; } ?> a venir boolean dediednsretirer ( string $session, string $compte, string $domaine ) retire un domaine du ns2 din'hosting, utilisé par les locataires de serveurs dédiés ou les propriétaires de serveurs en colocation. code php5 | code perl <?php $login = "xxx-din" ; $pass = "xxxxxxx" ; $compte = "moncompte" ; $domaine = "mondomaine.tld" , try { $client = new soapclient ( "https://api.dinhosting.fr/api.wsdl" , array( "trace" => 1 , "soap_version" => soap_1_1 )); $session = $client -> login ( $login , $pass ); if ( $session != false ) { echo "connexion effectuée avec succès<br />" ; } $dediednsretirer = $client -> dediednsretirer ( $session , $compte , $domaine ); if ( $dediednsretirer != false ) { echo "retrait effectué avec succès<br />" ; } $logout = $client -> logout ( $session ); if ( $logout != false ) { echo "déconnexion effectuée avec succès<br />" ; } } catch ( soapfault $fault ) { echo $fault ; } ?> a venir array dedieliste ( string $session ) renvoie la liste des serveurs dédiés et en colocation associés au compte code php5 | code perl <?php $login = "xxx-din" ; $pass = "xxxxxxx" ; try { $client = new soapclient ( "https://api.dinhosting.fr/api.wsdl" , array( "trace" => 1 , "soap_version" => soap_1_1 )); $session = $client -> login ( $login , $pass ); if ( $session != false ) { echo "connexion effectuée avec succès<br />" ; } $comptes = $client -> dedieliste ( $session ); if ( $comptes != false ) { echo "<pre>" ; print_r ( $comptes ); echo "</pre>" ; } $logout = $client -> logout ( $session ); if ( $logout != false ) { echo "déconnexion effectuée avec succès<br />" ; } } catch ( soapfault $fault ) { echo $fault ; } ?> #!/usr/bin/perl use strict ; use warnings ; use soap :: lite ; my $login = "xxx-din" ; my $pass = "xxxxxxx" ; my $session ; my $client = soap :: lite -> uri ( "https://api.dinhosting.fr/api.wsdl" ) -> proxy ( "https://api.dinhosting.fr/" ); my $result = $client -> login ( $login , $pass ); if ( $result -> result ) { $session = $result -> result ; print "connexion effectuée avec succès\n" ; } my $comptes = $client -> dedieliste ( $session ); if ( $comptes -> result ) { my $i = - 1 ; while ( ref $comptes -> result ->[++ $i ] ) { print $comptes -> result ->[ $i ]{ 'login' } . "\n" ; print " => " . $comptes -> result ->[ $i ]{ 'etat' } . "\n" ; print " => " . $comptes -> result ->[ $i ]{ 'date_expire' } . "\n" ; } } my $logout = $client -> logout ( $session ); if ( $logout -> result ) { print "déconnexion effectuée avec succès\n" ; } array dediemonitoringetat ( string $session, string $serveur ) renvoie l'état des services monitorés sur le serveur code php5 | code perl <?php $login = "xxx-din" ; $pass = "xxxxxxx" ; $serveur = "serveurxxx" ; try { $client = new soapclient ( "https://api.dinhosting.fr/api.wsdl" , a

Informations Whois


Whois est un protocole qui permet d'accéder aux informations d'enregistrement.Vous pouvez atteindre quand le site Web a été enregistré, quand il va expirer, quelles sont les coordonnées du site avec les informations suivantes. En un mot, il comprend ces informations;

%%
%% This is the AFNIC Whois server.
%%
%% complete date format : YYYY-MM-DDThh:mm:ssZ
%% short date format : DD/MM
%% version : FRNIC-2.5
%%
%% Rights restricted by copyright.
%% See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/
%%
%% Use '-h' option to obtain more information about this service.
%%
%% [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> dinhosting.fr
%%
%% RL Net [##########] - RL IP [#########.]
%%

domain: dinhosting.fr
status: ACTIVE
status: transferPeriod
hold: NO
holder-c: DO4230-FRNIC
admin-c: ANO00-FRNIC
tech-c: OVH5-FRNIC
zone-c: NFC1-FRNIC
nsl-id: NSL15729-FRNIC
registrar: OVH
Expiry Date: 2020-10-08T22:08:23Z
created: 2007-11-19T12:19:24Z
last-update: 2019-10-08T23:45:44Z
source: FRNIC

ns-list: NSL15729-FRNIC
nserver: ns1.dinhosting.net
nserver: ns2.dinhosting.net
source: FRNIC

registrar: OVH
type: Isp Option 1
address: 2 Rue Kellermann
address: 59100 ROUBAIX
country: FR
phone: +33 8 99 70 17 61
fax-no: +33 3 20 20 09 58
e-mail: support@ovh.net
website: http://www.ovh.com
anonymous: NO
registered: 1999-10-21T12:00:00Z
source: FRNIC

nic-hdl: DO4230-FRNIC
type: ORGANIZATION
contact: Din Ovation
address: Din Ovation
address: 14ter, rue Fringon
address: 40220 Tarnos
country: FR
phone: +33 9 74 53 40 29
fax-no: +33 9 74 53 40 30
e-mail: noc-afnic@dinhosting.fr
registrar: OVH
changed: 2019-09-24T18:11:12Z nic@nic.fr
anonymous: NO
obsoleted: NO
eligstatus: ok
eligdate: 2019-09-24T18:11:12Z
reachstatus: not identified
source: FRNIC

nic-hdl: ANO00-FRNIC
type: PERSON
contact: Ano Nymous
remarks: -------------- WARNING --------------
remarks: While the registrar knows him/her,
remarks: this person chose to restrict access
remarks: to his/her personal data. So PLEASE,
remarks: don't send emails to Ano Nymous. This
remarks: address is bogus and there is no hope
remarks: of a reply.
remarks: -------------- WARNING --------------
registrar: OVH
changed: 2019-10-08T23:45:41Z anonymous@anonymous
anonymous: YES
obsoleted: NO
eligstatus: not identified
reachstatus: not identified
source: FRNIC

nic-hdl: OVH5-FRNIC
type: ROLE
contact: OVH NET
address: OVH
address: 140, quai du Sartel
address: 59100 Roubaix
country: FR
phone: +33 8 99 70 17 61
e-mail: tech@ovh.net
trouble: Information: http://www.ovh.fr
trouble: Questions: mailto:tech@ovh.net
trouble: Spam: mailto:abuse@ovh.net
admin-c: OK217-FRNIC
tech-c: OK217-FRNIC
notify: tech@ovh.net
registrar: OVH
changed: 2006-10-11T08:41:58Z tech@ovh.net
anonymous: NO
obsoleted: NO
eligstatus: not identified
reachstatus: not identified
source: FRNIC


  REFERRER http://www.nic.fr

  REGISTRAR AFNIC

SERVERS

  SERVER fr.whois-servers.net

  ARGS dinhosting.fr

  PORT 43

  TYPE domain
RegrInfo
DISCLAIMER
%
% This is the AFNIC Whois server.
%
% complete date format : YYYY-MM-DDThh:mm:ssZ
% short date format : DD/MM
% version : FRNIC-2.5
%
% Rights restricted by copyright.
% See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/
%
% Use '-h' option to obtain more information about this service.
%
% [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> dinhosting.fr
%
% RL Net [##########] - RL IP [#########.]
%

  REGISTERED yes

ADMIN

  HANDLE ANO00-FRNIC

  TYPE PERSON

  CONTACT Ano Nymous

REMARKS
-------------- WARNING --------------
While the registrar knows him/her,
this person chose to restrict access
to his/her personal data. So PLEASE,
don't send emails to Ano Nymous. This
address is bogus and there is no hope
of a reply.
-------------- WARNING --------------

  SPONSOR OVH

  CHANGED 2019-10-08

  ANONYMOUS YES

  OBSOLETED NO

  ELIGSTATUS not identified

  REACHSTATUS not identified

  SOURCE FRNIC

TECH

  HANDLE OVH5-FRNIC

  TYPE ROLE

  CONTACT OVH NET

ADDRESS
OVH
140, quai du Sartel
59100 Roubaix

  COUNTRY FR

  PHONE +33 8 99 70 17 61

  EMAIL tech@ovh.net

TROUBLE
Information: http://www.ovh.fr
Questions: mailto:tech@ovh.net
Spam: mailto:abuse@ovh.net

  ADMIN-C OK217-FRNIC

  TECH-C OK217-FRNIC

  NOTIFY tech@ovh.net

  SPONSOR OVH

  CHANGED 2006-10-11

  ANONYMOUS NO

  OBSOLETED NO

  ELIGSTATUS not identified

  REACHSTATUS not identified

  SOURCE FRNIC

OWNER

  HANDLE DO4230-FRNIC

  TYPE ORGANIZATION

  CONTACT Din Ovation

ADDRESS
Din Ovation
14ter, rue Fringon
40220 Tarnos

  COUNTRY FR

  PHONE +33 9 74 53 40 29

  FAX +33 9 74 53 40 30

  EMAIL noc-afnic@dinhosting.fr

  SPONSOR OVH

  CHANGED 2019-09-24

  ANONYMOUS NO

  OBSOLETED NO

  ELIGSTATUS ok

  ELIGDATE 2019-09-24T18:11:12Z

  REACHSTATUS not identified

  SOURCE FRNIC

DOMAIN

STATUS
ACTIVE
transferPeriod

  HOLD NO

  SPONSOR OVH

  EXPIRY DATE 2020-10-08T22:08:23Z

  CREATED 2007-11-19

  CHANGED 2019-10-08

  SOURCE FRNIC

  HANDLE NSL15729-FRNIC

NSERVER

  NS1.DINHOSTING.NET 178.33.232.69

  NS2.DINHOSTING.NET 178.33.232.69

  NAME dinhosting.fr

Go to top

Erreurs


La liste suivante vous montre les fautes d'orthographe possibles des internautes pour le site Web recherché.

  • www.uapi.com
  • www.7api.com
  • www.hapi.com
  • www.kapi.com
  • www.japi.com
  • www.iapi.com
  • www.8api.com
  • www.yapi.com
  • www.apiebc.com
  • www.apiebc.com
  • www.api3bc.com
  • www.apiwbc.com
  • www.apisbc.com
  • www.api#bc.com
  • www.apidbc.com
  • www.apifbc.com
  • www.api&bc.com
  • www.apirbc.com
  • www.urlw4ebc.com
  • www.api4bc.com
  • www.apic.com
  • www.apibc.com
  • www.apivc.com
  • www.apivbc.com
  • www.apivc.com
  • www.api c.com
  • www.api bc.com
  • www.api c.com
  • www.apigc.com
  • www.apigbc.com
  • www.apigc.com
  • www.apijc.com
  • www.apijbc.com
  • www.apijc.com
  • www.apinc.com
  • www.apinbc.com
  • www.apinc.com
  • www.apihc.com
  • www.apihbc.com
  • www.apihc.com
  • www.api.com
  • www.apic.com
  • www.apix.com
  • www.apixc.com
  • www.apix.com
  • www.apif.com
  • www.apifc.com
  • www.apif.com
  • www.apiv.com
  • www.apivc.com
  • www.apiv.com
  • www.apid.com
  • www.apidc.com
  • www.apid.com
  • www.apicb.com
  • www.apicom
  • www.api..com
  • www.api/com
  • www.api/.com
  • www.api./com
  • www.apincom
  • www.apin.com
  • www.api.ncom
  • www.api;com
  • www.api;.com
  • www.api.;com
  • www.apilcom
  • www.apil.com
  • www.api.lcom
  • www.api com
  • www.api .com
  • www.api. com
  • www.api,com
  • www.api,.com
  • www.api.,com
  • www.apimcom
  • www.apim.com
  • www.api.mcom
  • www.api.ccom
  • www.api.om
  • www.api.ccom
  • www.api.xom
  • www.api.xcom
  • www.api.cxom
  • www.api.fom
  • www.api.fcom
  • www.api.cfom
  • www.api.vom
  • www.api.vcom
  • www.api.cvom
  • www.api.dom
  • www.api.dcom
  • www.api.cdom
  • www.apic.om
  • www.api.cm
  • www.api.coom
  • www.api.cpm
  • www.api.cpom
  • www.api.copm
  • www.api.cim
  • www.api.ciom
  • www.api.coim
  • www.api.ckm
  • www.api.ckom
  • www.api.cokm
  • www.api.clm
  • www.api.clom
  • www.api.colm
  • www.api.c0m
  • www.api.c0om
  • www.api.co0m
  • www.api.c:m
  • www.api.c:om
  • www.api.co:m
  • www.api.c9m
  • www.api.c9om
  • www.api.co9m
  • www.api.ocm
  • www.api.co
  • api.dinhosting.frm
  • www.api.con
  • www.api.conm
  • api.dinhosting.frn
  • www.api.col
  • www.api.colm
  • api.dinhosting.frl
  • www.api.co
  • www.api.co m
  • api.dinhosting.fr
  • www.api.cok
  • www.api.cokm
  • api.dinhosting.frk
  • www.api.co,
  • www.api.co,m
  • api.dinhosting.fr,
  • www.api.coj
  • www.api.cojm
  • api.dinhosting.frj
  • www.api.cmo
 Afficher toutes les erreurs  Cacher toutes les erreurs