Skip to main content

Hostinger API Python SDK

PyPI version

About

This is a Python SDK for the Hostinger API.

For more information, please visit https://developers.hostinger.com.

Requirements.

Python 3.9+

Installation & Usage

pip install

Setup new virtual environment (optional but recommended):

python3 -m venv venv
source venv/bin/activate

Install the package via pip:

pip install hostinger_api

Then import the package:

import hostinger_api

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import hostinger_api

Getting Started

Please follow the installation procedure and then run the following:

import hostinger_api
from hostinger_api.rest import ApiException
from pprint import pprint


# Configure Bearer authorization: apiToken
configuration = hostinger_api.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)


# Enter a context with an instance of the API client
with hostinger_api.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = hostinger_api.AgencyHostingCacheApi(api_client)
    website_uid = 'zpwlGlp19' # str | Agency Plan website UID

    try:
        # Clear website cache
        api_response = api_instance.clear_website_cache_v1(website_uid)
        print("The response of AgencyHostingCacheApi->clear_website_cache_v1:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AgencyHostingCacheApi->clear_website_cache_v1: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://developers.hostinger.com

Class Method HTTP request Description
AgencyHostingCacheApi clear_website_cache_v1 DELETE /api/agency-hosting/v1/websites/{website_uid}/cache Clear website cache
AgencyHostingCronJobsApi create_website_cron_job_v1 POST /api/agency-hosting/v1/websites/{website_uid}/cron-jobs Create website cron job
AgencyHostingCronJobsApi delete_website_cron_job_v1 DELETE /api/agency-hosting/v1/websites/{website_uid}/cron-jobs/{uuid} Delete website cron job
AgencyHostingCronJobsApi list_website_cron_jobs_v1 GET /api/agency-hosting/v1/websites/{website_uid}/cron-jobs List website cron jobs
AgencyHostingDatabasesApi create_website_database_user_v1 POST /api/agency-hosting/v1/websites/{website_uid}/databases/{database_name}/users Create website database user
AgencyHostingDatabasesApi create_website_database_v1 POST /api/agency-hosting/v1/websites/{website_uid}/databases Create website database
AgencyHostingDatabasesApi delete_website_database_user_v1 DELETE /api/agency-hosting/v1/websites/{website_uid}/databases/{database_name}/users/{database_user_name} Delete website database user
AgencyHostingDatabasesApi delete_website_database_v1 DELETE /api/agency-hosting/v1/websites/{website_uid}/databases/{database_name} Delete website database
AgencyHostingDatabasesApi list_website_databases_v1 GET /api/agency-hosting/v1/websites/{website_uid}/databases List website databases
AgencyHostingDatacentersApi list_available_datacenters_v1 GET /api/agency-hosting/v1/orders/{order_id}/datacenters List available datacenters
AgencyHostingDomainsApi change_website_domain_v1 PUT /api/agency-hosting/v1/websites/{website_uid}/domains/{from_domain} Change website domain
AgencyHostingDomainsApi link_domain_to_website_v1 POST /api/agency-hosting/v1/websites/{website_uid}/domains Link domain to website
AgencyHostingDomainsApi list_domains_v1 GET /api/agency-hosting/v1/domains List domains
AgencyHostingDomainsApi unlink_domain_from_website_v1 DELETE /api/agency-hosting/v1/websites/{website_uid}/domains/{domain} Unlink domain from website
AgencyHostingFilesApi generate_upload_urlv1 POST /api/agency-hosting/v1/websites/{website_uid}/files/upload-urls Generate upload URL
AgencyHostingFilesApi import_website_from_archive_v1 POST /api/agency-hosting/v1/websites/{website_uid}/files/import-archive Import website from archive
AgencyHostingMetricsApi list_agency_plan_order_disk_usage_metrics_v1 GET /api/agency-hosting/v1/orders/{order_id}/disk-usage-metrics List Agency Plan order disk usage metrics
AgencyHostingMetricsApi list_order_resource_usage_metrics_v1 GET /api/agency-hosting/v1/orders/{order_id}/resource-usage-metrics List order resource usage metrics
AgencyHostingOrdersApi list_orders_v1 GET /api/agency-hosting/v1/orders List orders
AgencyHostingPHPApi list_available_php_versions_for_a_website_v1 GET /api/agency-hosting/v1/websites/{website_uid}/php-settings/versions List available PHP versions for a website
AgencyHostingPHPApi list_available_php_versions_for_an_order_v1 GET /api/agency-hosting/v1/orders/{order_id}/websites/php-settings/versions List available PHP versions for an order
AgencyHostingPHPApi list_php_extensions_for_a_website_v1 GET /api/agency-hosting/v1/websites/{website_uid}/php-settings/extensions List PHP extensions for a website
AgencyHostingPHPApi list_php_options_for_a_website_v1 GET /api/agency-hosting/v1/websites/{website_uid}/php-settings/options List PHP options for a website
AgencyHostingPHPApi replace_website_php_extensions_v1 PUT /api/agency-hosting/v1/websites/{website_uid}/php-settings/extensions Replace website PHP extensions
AgencyHostingPHPApi replace_website_php_options_v1 PUT /api/agency-hosting/v1/websites/{website_uid}/php-settings/options Replace website PHP options
AgencyHostingPHPApi update_website_php_version_v1 PATCH /api/agency-hosting/v1/websites/{website_uid}/php-settings/version Update website PHP version
AgencyHostingWebsiteSetupsApi create_a_new_website_v1 POST /api/agency-hosting/v1/orders/{order_id}/websites/setups Create a new website
AgencyHostingWebsiteSetupsApi get_website_setup_status_v1 GET /api/agency-hosting/v1/orders/{order_id}/websites/setups/{setup_uuid} Get website setup status
AgencyHostingWebsitesApi build_website_node_js_assets_v1 POST /api/agency-hosting/v1/websites/{website_uid}/build-assets Build website NodeJS assets
AgencyHostingWebsitesApi delete_website_v1 DELETE /api/agency-hosting/v1/websites/{website_uid} Delete website
AgencyHostingWebsitesApi get_website_details_v1 GET /api/agency-hosting/v1/websites/{website_uid} Get website details
AgencyHostingWebsitesApi list_agency_plan_websites_v1 GET /api/agency-hosting/v1/websites List Agency Plan websites
AgencyHostingWebsitesApi list_website_processes_v1 GET /api/agency-hosting/v1/websites/{website_uid}/processes List website processes
AgencyHostingWordPressApi change_word_press_version_v1 PATCH /api/agency-hosting/v1/websites/{website_uid}/wordpress/settings/version Change WordPress version
AgencyHostingWordPressApi get_word_press_settings_v1 GET /api/agency-hosting/v1/websites/{website_uid}/wordpress/settings Get WordPress settings
AgencyHostingWordPressApi list_available_word_press_versions_v1 GET /api/agency-hosting/v1/websites/{website_uid}/wordpress/settings/versions List available WordPress versions
BillingCatalogApi get_catalog_item_list_v1 GET /api/billing/v1/catalog Get catalog item list
BillingOrdersApi create_purchase_order_v1 POST /api/billing/v1/orders Create purchase order
BillingPaymentMethodsApi delete_payment_method_v1 DELETE /api/billing/v1/payment-methods/{paymentMethodId} Delete payment method
BillingPaymentMethodsApi get_payment_method_list_v1 GET /api/billing/v1/payment-methods Get payment method list
BillingPaymentMethodsApi set_default_payment_method_v1 POST /api/billing/v1/payment-methods/{paymentMethodId} Set default payment method
BillingSubscriptionsApi disable_auto_renewal_v1 DELETE /api/billing/v1/subscriptions/{subscriptionId}/auto-renewal/disable Disable auto-renewal
BillingSubscriptionsApi enable_auto_renewal_v1 PATCH /api/billing/v1/subscriptions/{subscriptionId}/auto-renewal/enable Enable auto-renewal
BillingSubscriptionsApi get_subscription_list_v1 GET /api/billing/v1/subscriptions Get subscription list
BillingSubscriptionsApi renew_subscription_v1 POST /api/billing/v1/subscriptions/{subscriptionId}/renew Renew subscription
DNSSnapshotApi get_dns_snapshot_list_v1 GET /api/dns/v1/snapshots/{domain} Get DNS snapshot list
DNSSnapshotApi get_dns_snapshot_v1 GET /api/dns/v1/snapshots/{domain}/{snapshotId} Get DNS snapshot
DNSSnapshotApi restore_dns_snapshot_v1 POST /api/dns/v1/snapshots/{domain}/{snapshotId}/restore Restore DNS snapshot
DNSZoneApi delete_dns_records_v1 DELETE /api/dns/v1/zones/{domain} Delete DNS records
DNSZoneApi get_dns_records_v1 GET /api/dns/v1/zones/{domain} Get DNS records
DNSZoneApi reset_dns_records_v1 POST /api/dns/v1/zones/{domain}/reset Reset DNS records
DNSZoneApi update_dns_records_v1 PUT /api/dns/v1/zones/{domain} Update DNS records
DNSZoneApi validate_dns_records_v1 POST /api/dns/v1/zones/{domain}/validate Validate DNS records
DomainAccessVerifierVerificationsApi get_domain_verifications_direct GET /api/v2/direct/verifications/active Get domain verifications
DomainsAvailabilityApi check_domain_availability_v1 POST /api/domains/v1/availability Check domain availability
DomainsAvailabilityApi suggest_domain_names_from_a_description_v1 POST /api/domains/v1/availability/alternatives-from-description Suggest domain names from a description
DomainsAvailabilityApi suggest_domain_names_from_a_domain_v1 POST /api/domains/v1/availability/alternatives-from-domain Suggest domain names from a domain
DomainsForwardingApi create_domain_forwarding_v1 POST /api/domains/v1/forwarding Create domain forwarding
DomainsForwardingApi delete_domain_forwarding_v1 DELETE /api/domains/v1/forwarding/{domain} Delete domain forwarding
DomainsForwardingApi get_domain_forwarding_v1 GET /api/domains/v1/forwarding/{domain} Get domain forwarding
DomainsForwardingApi update_domain_forwarding_v1 PUT /api/domains/v1/forwarding/{domain} Update domain forwarding
DomainsMoveApi accept_incoming_domain_move_v1 PUT /api/domains/v1/move/incoming/{domain} Accept incoming domain move
DomainsMoveApi cancel_outgoing_domain_move_v1 DELETE /api/domains/v1/move/outgoing/{domain} Cancel outgoing domain move
DomainsMoveApi get_incoming_domain_move_list_v1 GET /api/domains/v1/move/incoming Get incoming domain move list
DomainsMoveApi get_incoming_domain_move_v1 GET /api/domains/v1/move/incoming/{domain} Get incoming domain move
DomainsMoveApi get_outgoing_domain_move_list_v1 GET /api/domains/v1/move/outgoing Get outgoing domain move list
DomainsMoveApi get_outgoing_domain_move_v1 GET /api/domains/v1/move/outgoing/{domain} Get outgoing domain move
DomainsMoveApi reject_incoming_domain_move_v1 DELETE /api/domains/v1/move/incoming/{domain} Reject incoming domain move
DomainsMoveApi start_outgoing_domain_move_v1 POST /api/domains/v1/move/outgoing/{domain} Start outgoing domain move
DomainsPortfolioApi claim_free_domain_v1 POST /api/domains/v1/portfolio/claim Claim free domain
DomainsPortfolioApi disable_domain_lock_v1 DELETE /api/domains/v1/portfolio/{domain}/domain-lock Disable domain lock
DomainsPortfolioApi disable_privacy_protection_v1 DELETE /api/domains/v1/portfolio/{domain}/privacy-protection Disable privacy protection
DomainsPortfolioApi enable_domain_lock_v1 PUT /api/domains/v1/portfolio/{domain}/domain-lock Enable domain lock
DomainsPortfolioApi enable_privacy_protection_v1 PUT /api/domains/v1/portfolio/{domain}/privacy-protection Enable privacy protection
DomainsPortfolioApi get_domain_authorization_code_v1 GET /api/domains/v1/portfolio/{domain}/auth-code Get domain authorization code
DomainsPortfolioApi get_domain_details_v1 GET /api/domains/v1/portfolio/{domain} Get domain details
DomainsPortfolioApi get_domain_list_v1 GET /api/domains/v1/portfolio Get domain list
DomainsPortfolioApi get_domain_renewal_information_v1 GET /api/domains/v1/portfolio/{domain}/renewal Get domain renewal information
DomainsPortfolioApi purchase_new_domain_v1 POST /api/domains/v1/portfolio Purchase new domain
DomainsPortfolioApi update_domain_nameservers_v1 PUT /api/domains/v1/portfolio/{domain}/nameservers Update domain nameservers
DomainsTransferApi claim_free_domain_transfer_v1 POST /api/domains/v1/transfers/claim Claim free domain transfer
DomainsTransferApi get_transfer_list_v1 GET /api/domains/v1/transfers Get transfer list
DomainsTransferApi get_transfer_v1 GET /api/domains/v1/transfers/{domain} Get transfer
DomainsWHOISApi cancel_pending_irtp_verification_v1 DELETE /api/domains/v1/irtp/{domain} Cancel pending IRTP verification
DomainsWHOISApi change_whois_profile_for_domain_v1 PUT /api/domains/v1/whois/change Change WHOIS profile for domain
DomainsWHOISApi create_whois_profile_v1 POST /api/domains/v1/whois Create WHOIS profile
DomainsWHOISApi delete_whois_profile_v1 DELETE /api/domains/v1/whois/{whoisId} Delete WHOIS profile
DomainsWHOISApi get_pending_irtp_verification_v1 GET /api/domains/v1/irtp/{domain} Get pending IRTP verification
DomainsWHOISApi get_whois_profile_list_v1 GET /api/domains/v1/whois Get WHOIS profile list
DomainsWHOISApi get_whois_profile_usage_v1 GET /api/domains/v1/whois/{whoisId}/usage Get WHOIS profile usage
DomainsWHOISApi get_whois_profile_v1 GET /api/domains/v1/whois/{whoisId} Get WHOIS profile
DomainsWHOISApi set_whois_profile_as_default_v1 PUT /api/domains/v1/whois/default/{whoisId} Set WHOIS profile as default
DomainsWHOISApi unset_default_whois_profile_v1 DELETE /api/domains/v1/whois/default/{whoisId} Unset default WHOIS profile
EcommerceDiscountsApi create_a_discount_v1 POST /api/ecommerce/v1/stores/{store_id}/discounts Create a discount
EcommerceDiscountsApi list_discounts_v1 GET /api/ecommerce/v1/stores/{store_id}/discounts List discounts
EcommerceMiscellaneousApi get_custom_storefront_setup_instructions_v1 GET /api/ecommerce/v1/miscellaneous/custom-storefront-instructions Get custom storefront setup instructions
EcommerceOrdersApi cancel_an_order_v1 POST /api/ecommerce/v1/stores/{store_id}/orders/{order_id}/cancel Cancel an order
EcommerceOrdersApi fulfil_an_order_v1 POST /api/ecommerce/v1/stores/{store_id}/orders/{order_id}/fulfill Fulfil an order
EcommerceOrdersApi list_store_orders_v1 GET /api/ecommerce/v1/stores/{store_id}/orders List store orders
EcommerceOrdersApi retrieve_an_order_v1 GET /api/ecommerce/v1/stores/{store_id}/orders/{order_id} Retrieve an order
EcommercePaymentsApi create_a_payment_provider_connect_link_v1 POST /api/ecommerce/v1/stores/{store_id}/payment-providers/{provider_id}/connect-link Create a payment provider connect link
EcommercePaymentsApi enable_manual_payment_method_v1 POST /api/ecommerce/v1/stores/{store_id}/payment-methods/manual Enable manual payment method
EcommercePaymentsApi list_store_payment_providers_v1 GET /api/ecommerce/v1/stores/{store_id}/payment-providers List store payment providers
EcommerceProductVariantsApi create_a_product_variant_v1 POST /api/ecommerce/v1/stores/{store_id}/products/{product_id}/variants Create a product variant
EcommerceProductVariantsApi delete_a_product_variant_v1 DELETE /api/ecommerce/v1/stores/{store_id}/products/{product_id}/variants/{variant_id} Delete a product variant
EcommerceProductVariantsApi list_product_variants_v1 GET /api/ecommerce/v1/stores/{store_id}/products/{product_id}/variants List product variants
EcommerceProductVariantsApi update_product_variants_in_batch_v1 PATCH /api/ecommerce/v1/stores/{store_id}/products/{product_id}/variants/batch Update product variants in batch
EcommerceProductsApi create_a_product_image_upload_urlv1 POST /api/ecommerce/v1/stores/{store_id}/products/{product_id}/images/upload-url Create a product image upload URL
EcommerceProductsApi create_digital_product_v1 POST /api/ecommerce/v1/stores/{store_id}/products/digital Create digital product
EcommerceProductsApi create_physical_product_v1 POST /api/ecommerce/v1/stores/{store_id}/products/physical Create physical product
EcommerceProductsApi delete_a_product_v1 DELETE /api/ecommerce/v1/stores/{store_id}/products/{product_id} Delete a product
EcommerceProductsApi list_products_v1 GET /api/ecommerce/v1/stores/{store_id}/products List products
EcommerceProductsApi update_a_product_v1 PATCH /api/ecommerce/v1/stores/{store_id}/products/{product_id} Update a product
EcommerceProductsApi upload_and_attach_a_product_image_v1 POST /api/ecommerce/v1/stores/{store_id}/products/{product_id}/images Upload and attach a product image
EcommerceSalesChannelsApi create_a_sales_channel_v1 POST /api/ecommerce/v1/stores/{store_id}/sales-channels Create a sales channel
EcommerceSalesChannelsApi list_sales_channels_v1 GET /api/ecommerce/v1/stores/{store_id}/sales-channels List sales channels
EcommerceSalesChannelsApi update_sales_channel_v1 PATCH /api/ecommerce/v1/stores/{store_id}/sales-channels/{sales_channel_id} Update sales channel
EcommerceShippingApi set_store_shipping_v1 POST /api/ecommerce/v1/stores/{store_id}/shipping Set store shipping
EcommerceStoresApi create_store_v1 POST /api/ecommerce/v1/stores Create store
EcommerceStoresApi delete_store_v1 DELETE /api/ecommerce/v1/stores/{store_id} Delete store
EcommerceStoresApi get_store_metadata_v1 GET /api/ecommerce/v1/stores/{store_id}/metadata Get store metadata
EcommerceStoresApi get_stores_v1 GET /api/ecommerce/v1/stores Get stores
HorizonsWebsitesApi create_website_v1 POST /api/horizons/v1/websites Create website
HorizonsWebsitesApi get_website_v1 GET /api/horizons/v1/websites/{websiteId} Get website
HostingCacheApi clear_website_cache_v1 DELETE /api/hosting/v1/accounts/{username}/websites/{domain}/cache/clear Clear website cache
HostingCacheApi toggle_cacheless_mode_v1 PATCH /api/hosting/v1/accounts/{username}/websites/{domain}/cacheless-mode/toggle Toggle cacheless mode
HostingCacheApi toggle_website_cache_v1 PATCH /api/hosting/v1/accounts/{username}/websites/{domain}/cache/toggle Toggle website cache
HostingCronJobsApi create_account_cron_job_v1 POST /api/hosting/v1/accounts/{username}/cron-jobs Create account cron job
HostingCronJobsApi delete_account_cron_job_v1 DELETE /api/hosting/v1/accounts/{username}/cron-jobs/{uid} Delete account cron job
HostingCronJobsApi get_cron_job_output_v1 GET /api/hosting/v1/accounts/{username}/cron-jobs/{uid}/output Get cron job output
HostingCronJobsApi list_account_cron_jobs_v1 GET /api/hosting/v1/accounts/{username}/cron-jobs List account cron jobs
HostingDatabasesApi change_database_password_v1 PATCH /api/hosting/v1/accounts/{username}/databases/{name}/change-password Change database password
HostingDatabasesApi create_account_database_v1 POST /api/hosting/v1/accounts/{username}/databases Create account database
HostingDatabasesApi create_database_remote_connection_v1 POST /api/hosting/v1/accounts/{username}/databases/{name}/remote-connections Create database remote connection
HostingDatabasesApi delete_account_database_v1 DELETE /api/hosting/v1/accounts/{username}/databases/{name} Delete account database
HostingDatabasesApi delete_database_remote_connection_v1 DELETE /api/hosting/v1/accounts/{username}/databases/{name}/remote-connections Delete database remote connection
HostingDatabasesApi get_php_my_admin_link_v1 GET /api/hosting/v1/accounts/{username}/databases/{name}/phpmyadmin-link Get phpMyAdmin link
HostingDatabasesApi list_account_databases_v1 GET /api/hosting/v1/accounts/{username}/databases List account databases
HostingDatabasesApi list_database_remote_connections_v1 GET /api/hosting/v1/accounts/{username}/databases/remote-connections List database remote connections
HostingDatabasesApi repair_database_v1 PATCH /api/hosting/v1/accounts/{username}/databases/{name}/repair Repair database
HostingDatacentersApi list_available_datacenters_v1 GET /api/hosting/v1/datacenters List available datacenters
HostingDomainsApi create_website_parked_domain_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/parked-domains Create website parked domain
HostingDomainsApi create_website_subdomain_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/subdomains Create website subdomain
HostingDomainsApi delete_website_parked_domain_v1 DELETE /api/hosting/v1/accounts/{username}/websites/{domain}/parked-domains/{parkedDomain} Delete website parked domain
HostingDomainsApi delete_website_subdomain_v1 DELETE /api/hosting/v1/accounts/{username}/websites/{domain}/subdomains/{subdomain} Delete website subdomain
HostingDomainsApi generate_a_free_subdomain_v1 POST /api/hosting/v1/domains/free-subdomains Generate a free subdomain
HostingDomainsApi list_website_parked_domains_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/parked-domains List website parked domains
HostingDomainsApi list_website_subdomains_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/subdomains List website subdomains
HostingDomainsApi verify_domain_ownership_v1 POST /api/hosting/v1/domains/verify-ownership Verify domain ownership
HostingFilesApi generate_upload_urlv1 POST /api/hosting/v1/files/upload-urls Generate upload URL
HostingFilesApi get_website_file_content_v1 GET /api/hosting/v1/accounts/{username}/domains/{domain}/files/content Get website file content
HostingFilesApi list_website_files_and_directories_v1 GET /api/hosting/v1/accounts/{username}/domains/{domain}/files List website files and directories
HostingNodeJSApi get_node_js_build_logs_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/{uuid}/logs Get NodeJS build logs
HostingNodeJSApi get_node_js_build_settings_from_archive_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/settings/from-archive Get Node.js build settings from archive
HostingNodeJSApi list_node_js_builds_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds List NodeJS builds
HostingNodeJSApi list_node_js_environment_variables_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/settings/env List Node.js environment variables
HostingNodeJSApi list_node_js_vulnerabilities_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/vulnerabilities List Node.js vulnerabilities
HostingNodeJSApi patch_node_js_vulnerabilities_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/vulnerabilities/patch Patch Node.js vulnerabilities
HostingNodeJSApi replace_node_js_environment_variables_v1 PUT /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds/settings/env Replace Node.js environment variables
HostingNodeJSApi restart_node_js_application_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/server/restart Restart Node.js application
HostingNodeJSApi start_node_js_build_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/nodejs/builds Start Node.js build
HostingOrdersApi list_orders_v1 GET /api/hosting/v1/orders List orders
HostingPHPApi get_php_details_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/php/details Get PHP details
HostingPHPApi get_php_info_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/php/php-info Get PHP info
HostingPHPApi reset_php_extensions_v1 PATCH /api/hosting/v1/accounts/{username}/websites/{domain}/php/extensions/reset Reset PHP extensions
HostingPHPApi update_php_extensions_v1 PATCH /api/hosting/v1/accounts/{username}/websites/{domain}/php/extensions Update PHP extensions
HostingPHPApi update_php_options_v1 PATCH /api/hosting/v1/accounts/{username}/websites/{domain}/php/options Update PHP options
HostingPHPApi update_php_version_v1 PATCH /api/hosting/v1/accounts/{username}/websites/{domain}/php/version Update PHP version
HostingRedirectsApi create_website_redirect_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/redirects Create website redirect
HostingRedirectsApi delete_website_redirect_v1 DELETE /api/hosting/v1/accounts/{username}/websites/{domain}/redirects Delete website redirect
HostingRedirectsApi list_website_redirects_v1 GET /api/hosting/v1/accounts/{username}/websites/{domain}/redirects List website redirects
HostingWebsitesApi create_website_v1 POST /api/hosting/v1/websites Create website
HostingWebsitesApi delete_website_v1 DELETE /api/hosting/v1/websites/{domain} Delete website
HostingWebsitesApi deploy_static_site_archive_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/deploy Deploy static site archive
HostingWebsitesApi list_websites_v1 GET /api/hosting/v1/websites List websites
MailAPITokensApi create_api_token_v1 POST /api/mail/v1/orders/{orderId}/api-tokens Create API token
MailAPITokensApi list_api_tokens_v1 GET /api/mail/v1/api-tokens List API tokens
MailAPITokensApi revoke_api_token_v1 DELETE /api/mail/v1/api-tokens/{tokenId} Revoke API token
MailAliasesApi create_alias_v1 POST /api/mail/v1/mailboxes/{mailboxId}/aliases Create alias
MailAliasesApi delete_alias_v1 DELETE /api/mail/v1/aliases/{aliasId} Delete alias
MailAliasesApi list_aliases_v1 GET /api/mail/v1/orders/{orderId}/aliases List aliases
MailAutorepliesApi create_autoreply_v1 POST /api/mail/v1/mailboxes/{mailboxId}/autoreplies Create autoreply
MailAutorepliesApi delete_autoreply_v1 DELETE /api/mail/v1/autoreplies/{autoreplyId} Delete autoreply
MailAutorepliesApi list_autoreplies_v1 GET /api/mail/v1/orders/{orderId}/autoreplies List autoreplies
MailAutorepliesApi update_autoreply_v1 PUT /api/mail/v1/autoreplies/{autoreplyId} Update autoreply
MailCatchallsApi create_catch_all_v1 POST /api/mail/v1/mailboxes/{mailboxId}/catchalls Create catch-all
MailCatchallsApi delete_catch_all_v1 DELETE /api/mail/v1/catchalls/{catchallId} Delete catch-all
MailCatchallsApi list_catch_alls_v1 GET /api/mail/v1/orders/{orderId}/catchalls List catch-alls
MailCatchallsApi resend_catch_all_confirmation_v1 POST /api/mail/v1/catchalls/{catchallId}/confirmation/resend Resend catch-all confirmation
MailForwardersApi create_forwarder_v1 POST /api/mail/v1/mailboxes/{mailboxId}/forwarders Create forwarder
MailForwardersApi delete_forwarder_v1 DELETE /api/mail/v1/forwarders/{forwarderId} Delete forwarder
MailForwardersApi list_forwarders_v1 GET /api/mail/v1/orders/{orderId}/forwarders List forwarders
MailForwardersApi resend_forwarder_confirmation_v1 POST /api/mail/v1/forwarders/{forwarderId}/confirmation/resend Resend forwarder confirmation
MailForwardersApi update_forwarder_keep_copy_setting_v1 PATCH /api/mail/v1/forwarders/{forwarderId}/keep-copy Update forwarder keep-copy setting
MailLogsApi list_access_logs_v1 GET /api/mail/v1/orders/{orderId}/logs/access List access logs
MailLogsApi list_action_logs_v1 GET /api/mail/v1/orders/{orderId}/logs/action List action logs
MailLogsApi list_inbound_logs_v1 GET /api/mail/v1/orders/{orderId}/logs/inbound List inbound logs
MailLogsApi list_mailbox_action_logs_v1 GET /api/mail/v1/orders/{orderId}/logs/mailbox-actions List mailbox action logs
MailLogsApi list_outbound_logs_v1 GET /api/mail/v1/orders/{orderId}/logs/outbound List outbound logs
MailMailboxesApi change_mailbox_password_v1 PATCH /api/mail/v1/mailboxes/{mailboxId}/password Change mailbox password
MailMailboxesApi create_mailbox_v1 POST /api/mail/v1/orders/{orderId}/mailboxes Create mailbox
MailMailboxesApi delete_mailbox_v1 DELETE /api/mail/v1/mailboxes/{mailboxId} Delete mailbox
MailMailboxesApi list_mailboxes_v1 GET /api/mail/v1/orders/{orderId}/mailboxes List mailboxes
MailOrdersApi get_order_plan_v1 GET /api/mail/v1/orders/{orderId}/plan Get order plan
MailOrdersApi list_orders_v1 GET /api/mail/v1/orders List orders
MailWebhooksApi create_webhook_v1 POST /api/mail/v1/mailboxes/{mailboxId}/webhooks Create webhook
MailWebhooksApi delete_webhook_v1 DELETE /api/mail/v1/webhooks/{webhookId} Delete webhook
MailWebhooksApi get_webhook_v1 GET /api/mail/v1/webhooks/{webhookId} Get webhook
MailWebhooksApi list_webhook_delivery_logs_v1 GET /api/mail/v1/orders/{orderId}/webhooks/delivery-logs List webhook delivery logs
MailWebhooksApi list_webhooks_v1 GET /api/mail/v1/orders/{orderId}/webhooks List webhooks
MailWebhooksApi regenerate_webhook_secret_v1 POST /api/mail/v1/webhooks/{webhookId}/regenerate-secret Regenerate webhook secret
MailWebhooksApi test_webhook_v1 POST /api/mail/v1/webhooks/{webhookId}/test Test webhook
MailWebhooksApi update_webhook_v1 PATCH /api/mail/v1/webhooks/{webhookId} Update webhook
ReachAutomationsApi get_automation_details_v1 GET /api/reach/v1/profiles/{profileUuid}/automations/{automationUuid} Get automation details
ReachAutomationsApi list_automation_steps_v1 GET /api/reach/v1/profiles/{profileUuid}/automations/{automationUuid}/steps List automation steps
ReachAutomationsApi list_automations_v1 GET /api/reach/v1/profiles/{profileUuid}/automations List automations
ReachCampaignsApi get_campaign_details_v1 GET /api/reach/v1/profiles/{profileUuid}/campaigns/{campaignUuid} Get campaign details
ReachCampaignsApi get_campaign_performance_v1 GET /api/reach/v1/profiles/{profileUuid}/campaigns/{campaignUuid}/statistics Get campaign performance
ReachCampaignsApi list_campaigns_v1 GET /api/reach/v1/profiles/{profileUuid}/campaigns List campaigns
ReachContactFieldsApi create_a_contact_field_v1 POST /api/reach/v1/profiles/{profileUuid}/contacts/fields Create a contact field
ReachContactFieldsApi delete_a_contact_field_v1 DELETE /api/reach/v1/profiles/{profileUuid}/contacts/fields/{fieldUuid} Delete a contact field
ReachContactFieldsApi list_contact_fields_v1 GET /api/reach/v1/profiles/{profileUuid}/contacts/fields List contact fields
ReachContactFieldsApi update_a_contact_field_v1 PATCH /api/reach/v1/profiles/{profileUuid}/contacts/fields/{fieldUuid} Update a contact field
ReachContactsApi create_a_new_contact_v1 POST /api/reach/v1/contacts Create a new contact
ReachContactsApi create_contacts_in_bulk_v1 POST /api/reach/v1/profiles/{profileUuid}/contacts/bulk Create contacts in bulk
ReachContactsApi create_new_contacts_v1 POST /api/reach/v1/profiles/{profileUuid}/contacts Create new contacts
ReachContactsApi delete_a_contact_v1 DELETE /api/reach/v1/contacts/{uuid} Delete a contact
ReachContactsApi delete_a_profile_contact_v1 DELETE /api/reach/v1/profiles/{profileUuid}/contacts/{contactUuid} Delete a profile contact
ReachContactsApi get_contact_details_v1 GET /api/reach/v1/profiles/{profileUuid}/contacts/{contactUuid} Get contact details
ReachContactsApi list_contact_groups_v1 GET /api/reach/v1/contacts/groups List contact groups
ReachContactsApi list_contacts_v1 GET /api/reach/v1/contacts List contacts
ReachContactsApi list_profile_contacts_v1 GET /api/reach/v1/profiles/{profileUuid}/contacts List profile contacts
ReachContactsApi update_a_contact_v1 PATCH /api/reach/v1/profiles/{profileUuid}/contacts/{contactUuid} Update a contact
ReachFormsApi delete_form_v1 DELETE /api/reach/v1/profiles/{profileUuid}/forms/{formUuid} Delete form
ReachFormsApi get_form_details_v1 GET /api/reach/v1/profiles/{profileUuid}/forms/{formUuid} Get form details
ReachFormsApi list_forms_v1 GET /api/reach/v1/profiles/{profileUuid}/forms List forms
ReachProfilesApi get_connected_sending_domain_v1 GET /api/reach/v1/profiles/{profileUuid}/domains Get connected sending domain
ReachProfilesApi get_profile_domain_dns_status_v1 GET /api/reach/v1/profiles/{profileUuid}/domains/dns-status Get profile domain DNS status
ReachProfilesApi get_remaining_plan_limits_v1 GET /api/reach/v1/profiles/{profileUuid}/limits Get remaining plan limits
ReachProfilesApi list_plan_feature_access_v1 GET /api/reach/v1/profiles/{profileUuid}/features List plan feature access
ReachProfilesApi list_profiles_v1 GET /api/reach/v1/profiles List Profiles
ReachSegmentsApi count_profile_segment_contacts_v1 GET /api/reach/v1/profiles/{profileUuid}/segmentation/segments/{segmentUuid}/count Count profile segment contacts
ReachSegmentsApi create_a_new_contact_segment_v1 POST /api/reach/v1/segmentation/segments Create a new contact segment
ReachSegmentsApi create_a_profile_segment_v1 POST /api/reach/v1/profiles/{profileUuid}/segmentation/segments Create a profile segment
ReachSegmentsApi delete_a_profile_segment_v1 DELETE /api/reach/v1/profiles/{profileUuid}/segmentation/segments/{segmentUuid} Delete a profile segment
ReachSegmentsApi get_profile_segment_details_v1 GET /api/reach/v1/profiles/{profileUuid}/segmentation/segments/{segmentUuid} Get profile segment details
ReachSegmentsApi get_segment_details_v1 GET /api/reach/v1/segmentation/segments/{segmentUuid} Get segment details
ReachSegmentsApi list_profile_segment_contacts_v1 GET /api/reach/v1/profiles/{profileUuid}/segmentation/segments/{segmentUuid}/contacts List profile segment contacts
ReachSegmentsApi list_profile_segments_v1 GET /api/reach/v1/profiles/{profileUuid}/segmentation/segments List profile segments
ReachSegmentsApi list_segment_contacts_v1 GET /api/reach/v1/segmentation/segments/{segmentUuid}/contacts List segment contacts
ReachSegmentsApi list_segment_filter_attributes_v1 GET /api/reach/v1/profiles/{profileUuid}/segmentation/filters/attributes List segment filter attributes
ReachSegmentsApi list_segments_v1 GET /api/reach/v1/segmentation/segments List segments
ReachSegmentsApi preview_contacts_matching_conditions_v1 POST /api/reach/v1/profiles/{profileUuid}/segmentation/filters/contacts Preview contacts matching conditions
ReachSegmentsApi update_a_profile_segment_v1 PUT /api/reach/v1/profiles/{profileUuid}/segmentation/segments/{segmentUuid} Update a profile segment
ReachTagsApi assign_a_contact_to_a_tag_v1 POST /api/reach/v1/profiles/{profileUuid}/tags/{tagUuid}/contacts/{contactUuid} Assign a contact to a tag
ReachTagsApi assign_contacts_to_a_tag_v1 POST /api/reach/v1/profiles/{profileUuid}/tags/{tagUuid}/contacts Assign contacts to a tag
ReachTagsApi create_or_find_tags_v1 POST /api/reach/v1/profiles/{profileUuid}/tags Create or find tags
ReachTagsApi delete_a_tag_v1 DELETE /api/reach/v1/profiles/{profileUuid}/tags/{tagUuid} Delete a tag
ReachTagsApi list_profile_tags_v1 GET /api/reach/v1/profiles/{profileUuid}/tags List profile tags
ReachTagsApi remove_a_contact_from_a_tag_v1 DELETE /api/reach/v1/profiles/{profileUuid}/tags/{tagUuid}/contacts/{contactUuid} Remove a contact from a tag
ReachTagsApi remove_contacts_from_a_tag_v1 DELETE /api/reach/v1/profiles/{profileUuid}/tags/{tagUuid}/contacts Remove contacts from a tag
ReachTagsApi rename_a_tag_v1 PATCH /api/reach/v1/profiles/{profileUuid}/tags/{tagUuid} Rename a tag
VPSActionsApi get_action_details_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/actions/{actionId} Get action details
VPSActionsApi get_actions_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/actions Get actions
VPSBackupsApi get_backups_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/backups Get backups
VPSBackupsApi restore_backup_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/backups/{backupId}/restore Restore backup
VPSDataCentersApi get_data_center_list_v1 GET /api/vps/v1/data-centers Get data center list
VPSDockerManagerApi create_new_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker Create new project
VPSDockerManagerApi delete_project_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/down Delete project
VPSDockerManagerApi get_project_containers_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/containers Get project containers
VPSDockerManagerApi get_project_contents_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName} Get project contents
VPSDockerManagerApi get_project_list_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/docker Get project list
VPSDockerManagerApi get_project_logs_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/logs Get project logs
VPSDockerManagerApi restart_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/restart Restart project
VPSDockerManagerApi start_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/start Start project
VPSDockerManagerApi stop_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/stop Stop project
VPSDockerManagerApi update_project_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/docker/{projectName}/update Update project
VPSFirewallApi activate_firewall_v1 POST /api/vps/v1/firewall/{firewallId}/activate/{virtualMachineId} Activate firewall
VPSFirewallApi create_firewall_rule_v1 POST /api/vps/v1/firewall/{firewallId}/rules Create firewall rule
VPSFirewallApi create_new_firewall_v1 POST /api/vps/v1/firewall Create new firewall
VPSFirewallApi deactivate_firewall_v1 POST /api/vps/v1/firewall/{firewallId}/deactivate/{virtualMachineId} Deactivate firewall
VPSFirewallApi delete_firewall_rule_v1 DELETE /api/vps/v1/firewall/{firewallId}/rules/{ruleId} Delete firewall rule
VPSFirewallApi delete_firewall_v1 DELETE /api/vps/v1/firewall/{firewallId} Delete firewall
VPSFirewallApi get_firewall_details_v1 GET /api/vps/v1/firewall/{firewallId} Get firewall details
VPSFirewallApi get_firewall_list_v1 GET /api/vps/v1/firewall Get firewall list
VPSFirewallApi sync_firewall_v1 POST /api/vps/v1/firewall/{firewallId}/sync/{virtualMachineId} Sync firewall
VPSFirewallApi update_firewall_rule_v1 PUT /api/vps/v1/firewall/{firewallId}/rules/{ruleId} Update firewall rule
VPSMalwareScannerApi get_scan_metrics_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/monarx Get scan metrics
VPSMalwareScannerApi install_monarx_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/monarx Install Monarx
VPSMalwareScannerApi uninstall_monarx_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/monarx Uninstall Monarx
VPSOSTemplatesApi get_template_details_v1 GET /api/vps/v1/templates/{templateId} Get template details
VPSOSTemplatesApi get_templates_v1 GET /api/vps/v1/templates Get templates
VPSPTRRecordsApi create_ptr_record_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/ptr/{ipAddressId} Create PTR record
VPSPTRRecordsApi delete_ptr_record_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/ptr/{ipAddressId} Delete PTR record
VPSPostInstallScriptsApi create_post_install_script_v1 POST /api/vps/v1/post-install-scripts Create post-install script
VPSPostInstallScriptsApi delete_post_install_script_v1 DELETE /api/vps/v1/post-install-scripts/{postInstallScriptId} Delete post-install script
VPSPostInstallScriptsApi get_post_install_script_v1 GET /api/vps/v1/post-install-scripts/{postInstallScriptId} Get post-install script
VPSPostInstallScriptsApi get_post_install_scripts_v1 GET /api/vps/v1/post-install-scripts Get post-install scripts
VPSPostInstallScriptsApi update_post_install_script_v1 PUT /api/vps/v1/post-install-scripts/{postInstallScriptId} Update post-install script
VPSPublicKeysApi attach_public_key_v1 POST /api/vps/v1/public-keys/attach/{virtualMachineId} Attach public key
VPSPublicKeysApi create_public_key_v1 POST /api/vps/v1/public-keys Create public key
VPSPublicKeysApi delete_public_key_v1 DELETE /api/vps/v1/public-keys/{publicKeyId} Delete public key
VPSPublicKeysApi get_public_keys_v1 GET /api/vps/v1/public-keys Get public keys
VPSRecoveryApi start_recovery_mode_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/recovery Start recovery mode
VPSRecoveryApi stop_recovery_mode_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/recovery Stop recovery mode
VPSSnapshotsApi create_snapshot_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/snapshot Create snapshot
VPSSnapshotsApi delete_snapshot_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/snapshot Delete snapshot
VPSSnapshotsApi get_snapshot_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/snapshot Get snapshot
VPSSnapshotsApi restore_snapshot_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/snapshot/restore Restore snapshot
VPSVirtualMachineApi get_attached_public_keys_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/public-keys Get attached public keys
VPSVirtualMachineApi get_metrics_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId}/metrics Get metrics
VPSVirtualMachineApi get_virtual_machine_details_v1 GET /api/vps/v1/virtual-machines/{virtualMachineId} Get virtual machine details
VPSVirtualMachineApi get_virtual_machines_v1 GET /api/vps/v1/virtual-machines Get virtual machines
VPSVirtualMachineApi purchase_new_virtual_machine_v1 POST /api/vps/v1/virtual-machines Purchase new virtual machine
VPSVirtualMachineApi recreate_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/recreate Recreate virtual machine
VPSVirtualMachineApi reset_hostname_v1 DELETE /api/vps/v1/virtual-machines/{virtualMachineId}/hostname Reset hostname
VPSVirtualMachineApi restart_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/restart Restart virtual machine
VPSVirtualMachineApi set_hostname_v1 PUT /api/vps/v1/virtual-machines/{virtualMachineId}/hostname Set hostname
VPSVirtualMachineApi set_nameservers_v1 PUT /api/vps/v1/virtual-machines/{virtualMachineId}/nameservers Set nameservers
VPSVirtualMachineApi set_panel_password_v1 PUT /api/vps/v1/virtual-machines/{virtualMachineId}/panel-password Set panel password
VPSVirtualMachineApi set_root_password_v1 PUT /api/vps/v1/virtual-machines/{virtualMachineId}/root-password Set root password
VPSVirtualMachineApi setup_purchased_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/setup Setup purchased virtual machine
VPSVirtualMachineApi start_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/start Start virtual machine
VPSVirtualMachineApi stop_virtual_machine_v1 POST /api/vps/v1/virtual-machines/{virtualMachineId}/stop Stop virtual machine
WordPressAIToolsApi set_ai_option_status_v1 PATCH /api/hosting/v1/accounts/{username}/wordpress/{software}/hostinger-plugins/ai-option/status Set AI option status
WordPressAIToolsApi show_ai_option_status_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/hostinger-plugins/ai-option/status Show AI option status
WordPressInstallationsApi check_if_word_press_installations_are_valid_v1 POST /api/hosting/v1/accounts/{username}/wordpress/installations/check-is-valid Check if WordPress installations are valid
WordPressInstallationsApi delete_word_press_installation_v1 DELETE /api/hosting/v1/accounts/{username}/wordpress/{software} Delete WordPress installation
WordPressInstallationsApi detect_word_press_installations_v1 POST /api/hosting/v1/accounts/{username}/wordpress/installations/detect Detect WordPress installations
WordPressInstallationsApi get_installation_jwt_token_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/jwt-token Get installation JWT token
WordPressInstallationsApi import_word_press_website_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/wordpress/import Import WordPress website
WordPressInstallationsApi install_word_press_v1 POST /api/hosting/v1/accounts/{username}/wordpress/installations Install WordPress
WordPressInstallationsApi list_available_word_press_core_updates_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/updates List available WordPress core updates
WordPressInstallationsApi list_word_press_installations_v1 GET /api/hosting/v1/wordpress/installations List WordPress installations
WordPressInstallationsApi show_word_press_core_version_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/version Show WordPress core version
WordPressInstallationsApi update_word_press_core_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/update Update WordPress core
WordPressLiteSpeedCacheApi purge_lite_speed_cache_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/litespeed-cache/purge Purge LiteSpeed Cache
WordPressLiteSpeedCacheApi show_lite_speed_cache_status_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/litespeed-cache/status Show LiteSpeed Cache status
WordPressLoginApi create_login_links_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/login/links Create login links
WordPressMaintenanceApi show_maintenance_status_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/maintenance/status Show maintenance status
WordPressMaintenanceApi toggle_maintenance_mode_v1 PATCH /api/hosting/v1/accounts/{username}/wordpress/{software}/maintenance/toggle Toggle maintenance mode
WordPressObjectCacheApi show_memcached_object_cache_status_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/memcached/status Show Memcached object cache status
WordPressObjectCacheApi toggle_memcached_object_cache_v1 PATCH /api/hosting/v1/accounts/{username}/wordpress/{software}/memcached/toggle Toggle Memcached object cache
WordPressPluginsApi activate_word_press_plugin_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/activate Activate WordPress plugin
WordPressPluginsApi check_if_woo_commerce_is_installed_v1 GET /api/hosting/v1/wordpress/plugins/is-woocommerce-installed Check if WooCommerce is installed
WordPressPluginsApi deactivate_word_press_plugin_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/deactivate Deactivate WordPress plugin
WordPressPluginsApi deploy_word_press_plugin_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/wordpress/plugins/deploy Deploy WordPress plugin
WordPressPluginsApi install_word_press_plugins_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/install Install WordPress plugins
WordPressPluginsApi list_available_word_press_plugins_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/available List available WordPress plugins
WordPressPluginsApi list_installed_word_press_plugins_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins List installed WordPress plugins
WordPressPluginsApi list_suggested_word_press_plugins_v1 GET /api/hosting/v1/wordpress/plugins/suggested List suggested WordPress plugins
WordPressPluginsApi search_word_press_plugins_v1 GET /api/hosting/v1/wordpress/plugins Search WordPress plugins
WordPressPluginsApi uninstall_word_press_plugins_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/uninstall Uninstall WordPress plugins
WordPressPluginsApi update_hostinger_word_press_plugin_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/hostinger/update Update Hostinger WordPress plugin
WordPressPluginsApi update_word_press_plugins_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/update Update WordPress plugins
WordPressThemesApi activate_word_press_theme_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/themes/activate Activate WordPress theme
WordPressThemesApi deploy_word_press_theme_v1 POST /api/hosting/v1/accounts/{username}/websites/{domain}/wordpress/themes/deploy Deploy WordPress theme
WordPressThemesApi install_word_press_theme_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/themes/install Install WordPress theme
WordPressThemesApi list_installed_word_press_themes_v1 GET /api/hosting/v1/accounts/{username}/wordpress/{software}/themes List installed WordPress themes
WordPressThemesApi list_word_press_themes_v1 GET /api/hosting/v1/wordpress/themes List WordPress themes
WordPressThemesApi uninstall_word_press_themes_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/themes/uninstall Uninstall WordPress themes
WordPressThemesApi update_word_press_themes_v1 POST /api/hosting/v1/accounts/{username}/wordpress/{software}/themes/update Update WordPress themes

Documentation For Models

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hostinger_api-3.43.0.tar.gz (469.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hostinger_api-3.43.0-py3-none-any.whl (1.1 MB view details)

Uploaded Python 3

File details

Details for the file hostinger_api-3.43.0.tar.gz.

File metadata

  • Download URL: hostinger_api-3.43.0.tar.gz
  • Upload date:
  • Size: 469.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hostinger_api-3.43.0.tar.gz
Algorithm Hash digest
SHA256 12e2efea00a8823278de21f7e92777bbd9e6a14f9b767cfb9922c2676245d81e
MD5 3a665752979d23f74ad51ecf6a3fabfb
BLAKE2b-256 75a06eb25c77f51d4d3d2143a4a7c1a001ff00ceaa1022458f676135801e7c08

See more details on using hashes here.

File details

Details for the file hostinger_api-3.43.0-py3-none-any.whl.

File metadata

  • Download URL: hostinger_api-3.43.0-py3-none-any.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hostinger_api-3.43.0-py3-none-any.whl
Algorithm Hash digest
SHA256 154abf3fa87755b323d8114eb35ff96f849926f0d2b0516e6487373c6e7ca423
MD5 05243a9a39b85a28a9f48c95fbd52134
BLAKE2b-256 99cdb51aabd30c591ebe8341fbc6a0a80d306cdef8cd787cf823247fbd118155

See more details on using hashes here.

Release history Release notifications | RSS feed

3.47.0

2 files

3.46.0

2 files

3.45.1

2 files

3.45.0

2 files

3.44.3

2 files

3.44.2

2 files

3.44.1

2 files

3.44.0

2 files

This release

3.43.0 This release

2 files

3.42.0

2 files

3.41.0

2 files

3.40.1

2 files

3.40.0

2 files

3.39.5

2 files

3.39.4

2 files

3.39.3

2 files

3.39.2

2 files

3.39.1

2 files

3.39.0

2 files

3.38.0

2 files

3.37.0

2 files

3.36.0

2 files

3.35.0

2 files

3.34.0

2 files

3.33.0

2 files

3.32.1

2 files

3.32.0

2 files

3.31.0

2 files

3.30.0

2 files

3.29.8

2 files

3.29.7

2 files

3.29.6

2 files

3.29.5

2 files

3.29.4

2 files

3.29.3

2 files

3.29.2

2 files

3.29.1

2 files

3.29.0

2 files

3.28.1

2 files

3.28.0

2 files

3.27.0

2 files

3.26.0

2 files

3.25.0

2 files

3.24.0

2 files

3.23.0

2 files

3.22.0

2 files

3.21.0

2 files

3.20.2

2 files

3.20.1

2 files

3.20.0

2 files

3.19.0

2 files

3.18.1

2 files

3.18.0

2 files

3.17.0

2 files

3.16.2

2 files

3.16.1

2 files

3.16.0

2 files

3.15.0

2 files

3.14.0

2 files

3.13.0

2 files

3.12.1

2 files

3.12.0

2 files

3.11.0

2 files

3.10.2

2 files

3.10.1

2 files

3.10.0

2 files

3.9.2

2 files

3.9.1

2 files

3.9.0

2 files

3.8.0

2 files

3.7.0

2 files

3.6.2

2 files

3.6.1

2 files

3.6.0

2 files

3.5.1

2 files

3.5.0

2 files

3.4.3

2 files

3.4.2

2 files

3.4.1

2 files

3.4.0

2 files

3.3.0

2 files

3.2.1

2 files

3.2.0

2 files

3.1.1

2 files

3.1.0

2 files

3.0.0

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

0.0.24

2 files

0.0.23

2 files

0.0.22

2 files

0.0.21

2 files

0.0.20

2 files

0.0.19

2 files

0.0.17

2 files

0.0.15

2 files

0.0.14

2 files

0.0.13

2 files

0.0.12

2 files

0.0.11

2 files

0.0.10

2 files

0.0.8

2 files

0.0.7

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page