Hetzner Cloud API

This is the official documentation for the Hetzner Cloud API.

Introduction

The Hetzner Cloud API operates over HTTPS and uses JSON as its data format. The API is a RESTful API and utilizes HTTP methods and HTTP status codes to specify requests and responses.

As an alternative to working directly with our API you may also consider to use:

Also you can find a list of libraries, tools, and integrations on GitHub.

If you are developing integrations based on our API and your product is Open Source you may be eligible for a free one time €50 (excl. VAT) credit on your account. Please contact us via the the support page on your Cloud Console and let us know the following:

  • The type of integration you would like to develop
  • Link to the GitHub repo you will use for the Project
  • Link to some other Open Source work you have already done (if you have done so)

Getting Started

To get started using the API you first need an API token. Sign in into the Hetzner Cloud Console choose a Project, go to SecurityAPI Tokens , and generate a new token. Make sure to copy the token because it won’t be shown to you again. A token is bound to a Project, to interact with the API of another Project you have to create a new token inside the Project. Let’s say your new token is LRK9DAWQ1ZAEFSrCNEEzLCUwhYX1U3g7wMg4dTlkkDC96fyDuyJ39nVbVjCKSDfj .

You’re now ready to do your first request against the API. To get a list of all Servers in your Project, issue the example request on the right side using curl.

Make sure to replace the token in the example command with the token you have just created. Since your Project probably does not contain any Servers yet, the example response will look like the response on the right side. We will almost always provide a resource root like servers inside the example response. A response can also contain a meta object with information like Pagination.

Example Request

1curl -H "Authorization: Bearer LRK9DAWQ1ZAEFSrCNEEzLCUwhYX1U3g7wMg4dTlkkDC96fyDuyJ39nVbVjCKSDfj" \
2  https://api.hetzner.cloud/v1/servers

Example Response

1{
2  "servers": [],
3  "meta": {
4    "pagination": {
5      "page": 1,
6      "per_page": 25,
7      "previous_page": null,
8      "next_page": null,
9      "last_page": 1,
10      "total_entries": 0
11    }
12  }
13}

Authentication

All requests to the Hetzner Cloud API must be authenticated via a API token. Include your secret API token in every request you send to the API with the Authorization HTTP header.

To create a new API token for your Project, switch into the Hetzner Cloud Console choose a Project, go to SecurityAPI Tokens , and generate a new token.

Example Authorization header

1Authorization: Bearer LRK9DAWQ1ZAEFSrCNEEzLCUwhYX1U3g7wMg4dTlkkDC96fyDuyJ39nVbVjCKSDfj

Errors

Errors are indicated by HTTP status codes. Further, the response of the request which generated the error contains an error code, an error message, and, optionally, error details. The schema of the error details object depends on the error code.

The error response contains the following keys:

Keys Meaning
code Short string indicating the type of error (machine-parsable)
message Textual description on what has gone wrong
details An object providing for details on the error (schema depends on code)

Error Codes

Code Description
forbidden Insufficient permissions for this request
unauthorized Request was made with an invalid or unknown token
invalid_input Error while parsing or processing the input
json_error Invalid JSON input in your request
locked The item you are trying to access is locked (there is already an Action running)
not_found Entity not found
rate_limit_exceeded Error when sending too many requests
resource_limit_exceeded Error when exceeding the maximum quantity of a resource for an account
resource_unavailable The requested resource is currently unavailable
server_error Error within the API backend
service_error Error within a service
uniqueness_error One or more of the objects fields must be unique
protected The Action you are trying to start is protected for this resource
maintenance Cannot perform operation due to maintenance
conflict The resource has changed during the request, please retry
unsupported_error The corresponding resource does not support the Action
token_readonly The token is only allowed to perform GET requests
unavailable A service or product is currently not available

Example response

1{
2  "error": {
3    "code": "invalid_input",
4    "message": "invalid input in field 'broken_field': is too long",
5    "details": {
6      "fields": [
7        {
8          "name": "broken_field",
9          "messages": ["is too long"]
10        }
11      ]
12    }
13  }
14}

invalid_input

1{
2  "error": {
3    "code": "invalid_input",
4    "message": "invalid input in field 'broken_field': is too long",
5    "details": {
6      "fields": [
7        {
8          "name": "broken_field",
9          "messages": ["is too long"]
10        }
11      ]
12    }
13  }
14}

uniqueness_error

1{
2  "error": {
3    "code": "uniqueness_error",
4    "message": "SSH key with the same fingerprint already exists",
5    "details": {
6      "fields": [
7        {
8          "name": "public_key"
9        }
10      ]
11    }
12  }
13}

resource_limit_exceeded

1{
2  "error": {
3    "code": "resource_limit_exceeded",
4    "message": "project limit exceeded",
5    "details": {
6      "limits": [
7        {
8          "name": "project_limit"
9        }
10      ]
11    }
12  }
13}

Labels

Labels are key/value pairs that can be attached to all resources.

Valid label keys have two segments: an optional prefix and name, separated by a slash ( / ). The name segment is required and must be a string of 63 characters or less, beginning and ending with an alphanumeric character ( [a-z0-9A-Z] ) with dashes ( - ), underscores ( _ ), dots ( . ), and alphanumerics between. The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots ( . ), not longer than 253 characters in total, followed by a slash ( / ).

Valid label values must be a string of 63 characters or less and must be empty or begin and end with an alphanumeric character ( [a-z0-9A-Z] ) with dashes ( - ), underscores ( _ ), dots ( . ), and alphanumerics between.

The hetzner.cloud/ prefix is reserved and cannot be used.

Example Labels

1{
2  "labels": {
3    "environment": "development",
4    "service": "backend",
5    "example.com/my": "label",
6    "just-a-key": ""
7  }
8}

Label Selector

For resources with labels, you can filter resources by their labels using the label selector query language.

Expression Meaning
k==v / k=v Value of key k does equal value v
k!=v Value of key k does not equal value v
k Key k is present
!k Key k is not present
k in (v1,v2,v3) Value of key k is v1 , v2 , or v3
k notin (v1,v2,v3) Value of key k is neither v1 , nor v2 , nor v3
k1==v,!k2 Value of key k1 is v and key k2 is not present

Examples

  • Returns all resources that have a env=production label and that don't have a type=database label:

    env=production,type!=database

  • Returns all resources that have a env=testing or env=staging label:

    env in (testing,staging)

  • Returns all resources that don't have a type label:

    !type

Pagination

Responses which return multiple items support pagination. If they do support pagination, it can be controlled with following query string parameters:

  • A page parameter specifies the page to fetch. The number of the first page is 1.
  • A per_page parameter specifies the number of items returned per page. The default value is 25, the maximum value is 50 except otherwise specified in the documentation.

Responses contain a Link header with pagination information.

Additionally, if the response body is JSON and the root object is an object, that object has a pagination object inside the meta object with pagination information:

The keys previous_page , next_page , last_page , and total_entries may be null when on the first page, last page, or when the total number of entries is unknown.

Line breaks have been added for display purposes only and responses may only contain some of the above rel values.

Example Pagination

1{
2    "servers": [...],
3    "meta": {
4        "pagination": {
5            "page": 2,
6            "per_page": 25,
7            "previous_page": 1,
8            "next_page": 3,
9            "last_page": 4,
10            "total_entries": 100
11        }
12    }
13}

Example Pagination Link header

1Link: <https://api.hetzner.cloud/v1/actions?page=2&per_page=5>; rel="prev",
2      <https://api.hetzner.cloud/v1/actions?page=4&per_page=5>; rel="next",
3      <https://api.hetzner.cloud/v1/actions?page=6&per_page=5>; rel="last"

Rate Limiting

All requests, whether they are authenticated or not, are subject to rate limiting. If you have reached your limit, your requests will be handled with a 429 Too Many Requests error. Burst requests are allowed. Responses contain serveral headers which provide information about your current rate limit status.

  • The RateLimit-Limit header contains the total number of requests you can perform per hour.
  • The RateLimit-Remaining header contains the number of requests remaining in the current rate limit time frame.
  • The RateLimit-Reset header contains a UNIX timestamp of the point in time when your rate limit will have recovered and you will have the full number of requests available again.

The default limit is 3600 requests per hour and per Project. The number of remaining requests increases gradually. For example, when your limit is 3600 requests per hour, the number of remaining requests will increase by 1 every second.

Server Metadata

Your Server can discover metadata about itself by doing a HTTP request to specific URLs. The following data is available:

Data Format Contents
hostname text Name of the Server as set in the api
instance-id number ID of the server
public-ipv4 text Primary public IPv4 address
private-networks yaml Details about the private networks the Server is attached to
availability-zone text Name of the availability zone that Server runs in
region text Network zone, e.g. eu-central

Example: Summary

1$ curl http://169.254.169.254/hetzner/v1/metadata

1availability-zone: hel1-dc2
2hostname: my-server
3instance-id: 42
4public-ipv4: 1.2.3.4
5region: eu-central

Example: Hostname

1$ curl http://169.254.169.254/hetzner/v1/metadata/hostname
2my-server

Example: Instance ID

1$ curl http://169.254.169.254/hetzner/v1/metadata/instance-id
242

Example: Public IPv4

1$ curl http://169.254.169.254/hetzner/v1/metadata/public-ipv4
21.2.3.4

Example: Private Networks

1$ curl http://169.254.169.254/hetzner/v1/metadata/private-networks

1- ip: 10.0.0.2
2  alias_ips: [10.0.0.3, 10.0.0.4]
3  interface_num: 1
4  mac_address: 86:00:00:2a:7d:e0
5  network_id: 1234
6  network_name: nw-test1
7  network: 10.0.0.0/8
8  subnet: 10.0.0.0/24
9  gateway: 10.0.0.1
10- ip: 192.168.0.2
11  alias_ips: []
12  interface_num: 2
13  mac_address: 86:00:00:2a:7d:e1
14  network_id: 4321
15  network_name: nw-test2
16  network: 192.168.0.0/16
17  subnet: 192.168.0.0/24
18  gateway: 192.168.0.1

Example: Availability Zone

1$ curl http://169.254.169.254/hetzner/v1/metadata/availability-zone
2hel1-dc2

Example: Region

1$ curl http://169.254.169.254/hetzner/v1/metadata/region
2eu-central

Sorting

Some responses which return multiple items support sorting. If they do support sorting the documentation states which fields can be used for sorting. You specify sorting with the sort query string parameter. You can sort by multiple fields. You can set the sort direction by appending :asc or :desc to the field name. By default, ascending sorting is used.

Example: Sorting

1https://api.hetzner.cloud/v1/actions?sort=status:asc
2https://api.hetzner.cloud/v1/actions?sort=status:desc
3https://api.hetzner.cloud/v1/actions?sort=status:asc&sort=command:desc

Deprecation Notices

You can find all announced deprecations in our Changelog.

Actions

Actions show the results and progress of asynchronous requests to the API.

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status parameter.

HTTP Request

GET /actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Certificates

TLS/SSL Certificates prove the identity of a Server and are used to encrypt client traffic.

Get all Certificates

Returns all Certificate objects.

HTTP Request

GET /certificates

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc created created:asc created:desc

    Sort resources by field and direction. Can be used multiple times. For more information, see "Sorting".

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • typestring
    Allowed: uploaded managed

    Can be used multiple times. The response will only contain Certificates matching the type.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/certificates"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "certificates": [
3    {
4      "certificate": "-----BEGIN CERTIFICATE-----\n...",
5      "created": "2019-01-08T12:10:00+00:00",
6      "domain_names": [
7        "example.com",
8        "webmail.example.com",
9        "www.example.com"
10      ],
11      "fingerprint": "03:c7:55:9b:2a:d1:04:17:09:f6:d0:7f:18:34:63:d4:3e:5f",
12      "id": 897,
13      "labels": {
14        "env": "dev"
15      },
16      "name": "my website cert",
17      "not_valid_after": "2019-07-08T09:59:59+00:00",
18      "not_valid_before": "2019-01-08T10:00:00+00:00",
19      "status": null,
20      "type": "uploaded",
21      "used_by": [
22        {
23          "id": 4711,
24          "type": "load_balancer"
25        }
26      ]
27    }
28  ]
29}

Create a Certificate

Creates a new Certificate.

The default type uploaded allows for uploading your existing certificate and private_key in PEM format. You have to monitor its expiration date and handle renewal yourself.

In contrast, type managed requests a new Certificate from Let's Encrypt for the specified domain_names . Only domains managed by Hetzner DNS are supported. We handle renewal and timely alert the project owner via email if problems occur.

For type managed Certificates the action key of the response contains the Action that allows for tracking the issuance process. For type uploaded Certificates the action is always null.

HTTP Request

POST /certificates

Request

  • certificatestring

    Certificate and chain in PEM format, in order so that each record directly certifies the one preceding. Required for type uploaded Certificates.

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring required

    Name of the Certificate

  • private_keystring

    Certificate key in PEM format. Required for type uploaded Certificates.

  • typestring
    Allowed: uploaded managedDefault: uploaded

    Choose between uploading a Certificate in PEM format or requesting a managed Let's Encrypt Certificate.

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"domain_names":["example.com","webmail.example.com","www.example.com"],"name":"my website cert","type":"managed"}' \
6	"https://api.hetzner.cloud/v1/certificates"

Request

1{
2  "domain_names": [
3    "example.com",
4    "webmail.example.com",
5    "www.example.com"
6  ],
7  "name": "my website cert",
8  "type": "managed"
9}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "create_certificate",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 879,
14        "type": "certificate"
15      }
16    ],
17    "started": "2019-01-08T12:10:00+00:00",
18    "status": "running"
19  },
20  "certificate": {
21    "certificate": null,
22    "created": "2019-01-08T12:10:00+00:00",
23    "domain_names": [
24      "example.com",
25      "webmail.example.com",
26      "www.example.com"
27    ],
28    "fingerprint": null,
29    "id": 897,
30    "labels": {
31      "env": "dev"
32    },
33    "name": "my website cert",
34    "not_valid_after": null,
35    "not_valid_before": null,
36    "status": {
37      "error": null,
38      "issuance": "pending",
39      "renewal": "unavailable"
40    },
41    "type": "managed",
42    "used_by": [
43      {
44        "id": 4711,
45        "type": "load_balancer"
46      }
47    ]
48  }
49}

Delete a Certificate

Deletes a Certificate.

HTTP Request

DELETE /certificates/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/certificates/$ID"

Response headers

1Status: 204

Get a Certificate

Gets a specific Certificate object.

HTTP Request

GET /certificates/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/certificates/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "certificate": {
3    "certificate": "-----BEGIN CERTIFICATE-----\n...",
4    "created": "2019-01-08T12:10:00+00:00",
5    "domain_names": [
6      "example.com",
7      "webmail.example.com",
8      "www.example.com"
9    ],
10    "fingerprint": "03:c7:55:9b:2a:d1:04:17:09:f6:d0:7f:18:34:63:d4:3e:5f",
11    "id": 897,
12    "labels": {
13      "env": "dev"
14    },
15    "name": "my website cert",
16    "not_valid_after": "2019-07-08T09:59:59+00:00",
17    "not_valid_before": "2019-01-08T10:00:00+00:00",
18    "status": null,
19    "type": "uploaded",
20    "used_by": [
21      {
22        "id": 4711,
23        "type": "load_balancer"
24      }
25    ]
26  }
27}

Update a Certificate

Updates the Certificate properties.

Note that when updating labels, the Certificate’s current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

Note: if the Certificate object changes during the request, the response will be a “conflict” error.

HTTP Request

PUT /certificates/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Request

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring

    New Certificate name

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"labels":{"labelkey":"value"},"name":"my website cert"}' \
6	"https://api.hetzner.cloud/v1/certificates/$ID"

Request

1{
2  "labels": {
3    "labelkey": "value"
4  },
5  "name": "my website cert"
6}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "certificate": {
3    "certificate": "-----BEGIN CERTIFICATE-----\n...",
4    "created": "2019-01-08T12:10:00+00:00",
5    "domain_names": [
6      "example.com",
7      "webmail.example.com",
8      "www.example.com"
9    ],
10    "fingerprint": "03:c7:55:9b:2a:d1:04:17:09:f6:d0:7f:18:34:63:d4:3e:5f",
11    "id": 897,
12    "labels": {
13      "labelkey": "value"
14    },
15    "name": "my website cert",
16    "not_valid_after": "2019-07-08T09:59:59+00:00",
17    "not_valid_before": "2019-01-08T10:00:00+00:00",
18    "status": null,
19    "type": "uploaded",
20    "used_by": [
21      {
22        "id": 4711,
23        "type": "load_balancer"
24      }
25    ]
26  }
27}

Certificate Actions

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status and id parameter.

HTTP Request

GET /certificates/actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/certificates/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /certificates/actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Action.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/certificates/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get all Actions for a Certificate

Returns all Action objects for a Certificate. You can sort the results by using the sort URI parameter, and filter them with the status parameter.

Only type managed Certificates can have Actions. For type uploaded Certificates the actions key will always contain an empty array.

HTTP Request

GET /certificates/{id}/actions

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/certificates/$ID/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "issue_certificate",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2021-01-30T23:57:00+00:00",
10      "id": 14,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 896,
15          "type": "certificate"
16        }
17      ],
18      "started": "2021-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ]
22}

Retry Issuance or Renewal

Retry a failed Certificate issuance or renewal.

Only applicable if the type of the Certificate is managed and the issuance or renewal status is failed .

Call specific error codes

Code Description
caa_record_does_not_allow_ca CAA record does not allow certificate authority
ca_dns_validation_failed Certificate Authority: DNS validation failed
ca_too_many_authorizations_failed_recently Certificate Authority: Too many authorizations failed recently
ca_too_many_certificates_issued_for_registered_domain Certificate Authority: Too many certificates issued for registered domain
ca_too_many_duplicate_certificates Certificate Authority: Too many duplicate certificates
could_not_verify_domain_delegated_to_zone Could not verify domain delegated to zone
dns_zone_not_found DNS zone not found
dns_zone_is_secondary_zone DNS zone is a secondary zone

HTTP Request

POST /certificates/{id}/actions/retry

Path Parameters

  • idinteger (int64) required

    ID of the Certificate

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/certificates/$ID/actions/retry"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "issue_certificate",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2021-01-30T23:57:00+00:00",
9    "id": 14,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 896,
14        "type": "certificate"
15      }
16    ],
17    "started": "2021-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get an Action for a Certificate

Returns a specific Action for a Certificate. Only type managed Certificates have Actions.

HTTP Request

GET /certificates/{id}/actions/{action_id}

Path Parameters

  • idinteger (int64) required

    ID of the Certificate

  • action_idinteger (int64) required

    ID of the Action

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/certificates/$ID/actions/$ACTION_ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "issue_certificate",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2021-01-30T23:57:00+00:00",
9    "id": 14,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 896,
14        "type": "certificate"
15      }
16    ],
17    "started": "2021-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Datacenters

Each Datacenter represents a virtual Datacenter which is made up of possible many physical Datacenters where Servers are hosted.

Datacenter names are composed from their Location and virtual Datacenter number, for example fsn1-dc14 means virtual Datacenter 14 in Location fsn1.

Right now there is only one Datacenter for each Location. The Datacenter numbers for fsn, nbg and hel are arbitrarily set to 14, 3 and 2 for historic reasons and do not represent real physical Hetzner datacenters.

Get all Datacenters

Returns all Datacenter objects.

HTTP Request

GET /datacenters

Query Parameters

  • namestring

    Can be used to filter Datacenters by their name. The response will only contain the Datacenter matching the specified name. When the name does not match the Datacenter name format, an invalid_input error is returned.

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc

    Can be used multiple times.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

  • recommendationinteger (int64) required

    The Datacenter which is recommended to be used to create new Servers.

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/datacenters"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "datacenters": [
3    {
4      "description": "Falkenstein DC Park 8",
5      "id": 42,
6      "location": {
7        "city": "Falkenstein",
8        "country": "DE",
9        "description": "Falkenstein DC Park 1",
10        "id": 1,
11        "latitude": 50.47612,
12        "longitude": 12.370071,
13        "name": "fsn1",
14        "network_zone": "eu-central"
15      },
16      "name": "fsn1-dc8",
17      "server_types": {
18        "available": [
19          1,
20          2,
21          3
22        ],
23        "available_for_migration": [
24          1,
25          2,
26          3
27        ],
28        "supported": [
29          1,
30          2,
31          3
32        ]
33      }
34    }
35  ],
36  "meta": {
37    "pagination": {
38      "last_page": 4,
39      "next_page": 4,
40      "page": 3,
41      "per_page": 25,
42      "previous_page": 2,
43      "total_entries": 100
44    }
45  },
46  "recommendation": 1
47}

Get a Datacenter

Returns a specific Datacenter object.

HTTP Request

GET /datacenters/{id}

Path Parameters

  • idinteger (int64) required

    ID of Datacenter

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/datacenters/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "datacenter": {
3    "description": "Falkenstein DC Park 8",
4    "id": 42,
5    "location": {
6      "city": "Falkenstein",
7      "country": "DE",
8      "description": "Falkenstein DC Park 1",
9      "id": 1,
10      "latitude": 50.47612,
11      "longitude": 12.370071,
12      "name": "fsn1",
13      "network_zone": "eu-central"
14    },
15    "name": "fsn1-dc8",
16    "server_types": {
17      "available": [
18        1,
19        2,
20        3
21      ],
22      "available_for_migration": [
23        1,
24        2,
25        3
26      ],
27      "supported": [
28        1,
29        2,
30        3
31      ]
32    }
33  }
34}

Firewalls

Firewalls can limit the network access to or from your resources.

  • When applying a firewall with no in rule all inbound traffic will be dropped. The default for in is DROP.
  • When applying a firewall with no out rule all outbound traffic will be accepted. The default for out is ACCEPT.

Get all Firewalls

Returns all Firewall objects.

HTTP Request

GET /firewalls

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc created created:asc created:desc

    Sort resources by field and direction. Can be used multiple times. For more information, see "Sorting".

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/firewalls"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "firewalls": [
3    {
4      "applied_to": [
5        {
6          "applied_to_resources": [
7            {
8              "server": {
9                "id": 42
10              },
11              "type": "server"
12            }
13          ],
14          "label_selector": {
15            "selector": "env=prod"
16          },
17          "server": {
18            "id": 42
19          },
20          "type": "server"
21        }
22      ],
23      "created": "2016-01-30T23:55:00+00:00",
24      "id": 42,
25      "labels": {
26        "environment": "prod",
27        "example.com/my": "label",
28        "just-a-key": ""
29      },
30      "name": "my-resource",
31      "rules": [
32        {
33          "description": null,
34          "destination_ips": [
35            "28.239.13.1/32",
36            "28.239.14.0/24",
37            "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
38          ],
39          "direction": "in",
40          "port": "80",
41          "protocol": "tcp",
42          "source_ips": [
43            "28.239.13.1/32",
44            "28.239.14.0/24",
45            "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
46          ]
47        }
48      ]
49    }
50  ],
51  "meta": {
52    "pagination": {
53      "last_page": 4,
54      "next_page": 4,
55      "page": 3,
56      "per_page": 25,
57      "previous_page": 2,
58      "total_entries": 100
59    }
60  }
61}

Create a Firewall

Creates a new Firewall.

Call specific error codes

Code Description
server_already_added Server added more than one time to resource
incompatible_network_type The Network type is incompatible for the given resource
firewall_resource_not_found The resource the Firewall should be attached to was not found

HTTP Request

POST /firewalls

Request

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring required

    Name of the Firewall

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"apply_to":[{"server":{"id":42},"type":"server"}],"labels":{"env":"dev"},"name":"Corporate Intranet Protection","rules":[{"description":"Allow port 80","direction":"in","port":"80","protocol":"tcp","source_ips":["28.239.13.1/32","28.239.14.0/24","ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"]}]}' \
6	"https://api.hetzner.cloud/v1/firewalls"

Request

1{
2  "apply_to": [
3    {
4      "server": {
5        "id": 42
6      },
7      "type": "server"
8    }
9  ],
10  "labels": {
11    "env": "dev"
12  },
13  "name": "Corporate Intranet Protection",
14  "rules": [
15    {
16      "description": "Allow port 80",
17      "direction": "in",
18      "port": "80",
19      "protocol": "tcp",
20      "source_ips": [
21        "28.239.13.1/32",
22        "28.239.14.0/24",
23        "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
24      ]
25    }
26  ]
27}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "actions": [
3    {
4      "command": "set_firewall_rules",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 13,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 38,
15          "type": "firewall"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    },
21    {
22      "command": "apply_firewall",
23      "error": {
24        "code": "action_failed",
25        "message": "Action failed"
26      },
27      "finished": "2016-01-30T23:56:00+00:00",
28      "id": 14,
29      "progress": 100,
30      "resources": [
31        {
32          "id": 42,
33          "type": "server"
34        },
35        {
36          "id": 38,
37          "type": "firewall"
38        }
39      ],
40      "started": "2016-01-30T23:55:00+00:00",
41      "status": "success"
42    }
43  ],
44  "firewall": {
45    "applied_to": [
46      {
47        "applied_to_resources": [
48          {
49            "server": {
50              "id": 42
51            },
52            "type": "server"
53          }
54        ],
55        "label_selector": {
56          "selector": "env=prod"
57        },
58        "server": {
59          "id": 42
60        },
61        "type": "server"
62      }
63    ],
64    "created": "2016-01-30T23:55:00+00:00",
65    "id": 42,
66    "labels": {
67      "environment": "prod",
68      "example.com/my": "label",
69      "just-a-key": ""
70    },
71    "name": "my-resource",
72    "rules": [
73      {
74        "description": null,
75        "destination_ips": [
76          "28.239.13.1/32",
77          "28.239.14.0/24",
78          "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
79        ],
80        "direction": "in",
81        "port": "80",
82        "protocol": "tcp",
83        "source_ips": [
84          "28.239.13.1/32",
85          "28.239.14.0/24",
86          "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
87        ]
88      }
89    ]
90  }
91}

Delete a Firewall

Deletes a Firewall.

Call specific error codes

Code Description
resource_in_use Firewall must not be in use to be deleted

HTTP Request

DELETE /firewalls/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/firewalls/$ID"

Response headers

1Status: 204

Get a Firewall

Gets a specific Firewall object.

HTTP Request

GET /firewalls/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/firewalls/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "firewall": {
3    "applied_to": [
4      {
5        "applied_to_resources": [
6          {
7            "server": {
8              "id": 42
9            },
10            "type": "server"
11          }
12        ],
13        "label_selector": {
14          "selector": "env=prod"
15        },
16        "server": {
17          "id": 42
18        },
19        "type": "server"
20      }
21    ],
22    "created": "2016-01-30T23:55:00+00:00",
23    "id": 42,
24    "labels": {
25      "environment": "prod",
26      "example.com/my": "label",
27      "just-a-key": ""
28    },
29    "name": "my-resource",
30    "rules": [
31      {
32        "description": null,
33        "destination_ips": [
34          "28.239.13.1/32",
35          "28.239.14.0/24",
36          "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
37        ],
38        "direction": "in",
39        "port": "80",
40        "protocol": "tcp",
41        "source_ips": [
42          "28.239.13.1/32",
43          "28.239.14.0/24",
44          "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
45        ]
46      }
47    ]
48  }
49}

Update a Firewall

Updates the Firewall.

Note that when updating labels, the Firewall's current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

Note: if the Firewall object changes during the request, the response will be a “conflict” error.

HTTP Request

PUT /firewalls/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Request

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring

    New Firewall name

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"labels":{"labelkey":"value"},"name":"new-name"}' \
6	"https://api.hetzner.cloud/v1/firewalls/$ID"

Request

1{
2  "labels": {
3    "labelkey": "value"
4  },
5  "name": "new-name"
6}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "firewall": {
3    "applied_to": [
4      {
5        "applied_to_resources": [
6          {
7            "server": {
8              "id": 42
9            },
10            "type": "server"
11          }
12        ],
13        "label_selector": {
14          "selector": "env=prod"
15        },
16        "server": {
17          "id": 42
18        },
19        "type": "server"
20      }
21    ],
22    "created": "2016-01-30T23:55:00+00:00",
23    "id": 42,
24    "labels": {
25      "environment": "prod",
26      "example.com/my": "label",
27      "just-a-key": ""
28    },
29    "name": "my-resource",
30    "rules": [
31      {
32        "description": null,
33        "destination_ips": [
34          "28.239.13.1/32",
35          "28.239.14.0/24",
36          "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
37        ],
38        "direction": "in",
39        "port": "80",
40        "protocol": "tcp",
41        "source_ips": [
42          "28.239.13.1/32",
43          "28.239.14.0/24",
44          "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
45        ]
46      }
47    ]
48  }
49}

Firewall Actions

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status and id parameter.

HTTP Request

GET /firewalls/actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/firewalls/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /firewalls/actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Action.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/firewalls/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get all Actions for a Firewall

Returns all Action objects for a Firewall. You can sort the results by using the sort URI parameter, and filter them with the status parameter.

HTTP Request

GET /firewalls/{id}/actions

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/firewalls/$ID/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "set_firewall_rules",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 13,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 38,
15          "type": "firewall"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ]
22}

Apply to Resources

Applies one Firewall to multiple resources.

Currently servers (public network interface) and label selectors are supported.

Call specific error codes

Code Description
firewall_already_applied Firewall was already applied on resource
incompatible_network_type The Network type is incompatible for the given resource
firewall_resource_not_found The resource the Firewall should be attached to was not found

HTTP Request

POST /firewalls/{id}/actions/apply_to_resources

Path Parameters

  • idinteger (int64) required

    ID of the Firewall

Request

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"apply_to":[{"server":{"id":42},"type":"server"}]}' \
6	"https://api.hetzner.cloud/v1/firewalls/$ID/actions/apply_to_resources"

Request

1{
2  "apply_to": [
3    {
4      "server": {
5        "id": 42
6      },
7      "type": "server"
8    }
9  ]
10}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "actions": [
3    {
4      "command": "apply_firewall",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 14,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        },
17        {
18          "id": 38,
19          "type": "firewall"
20        }
21      ],
22      "started": "2016-01-30T23:55:00+00:00",
23      "status": "success"
24    }
25  ]
26}

Remove from Resources

Removes one Firewall from multiple resources.

Currently only Servers (and their public network interfaces) are supported.

Call specific error codes

Code Description
firewall_already_removed Firewall was already removed from the resource
firewall_resource_not_found The resource the Firewall should be attached to was not found
firewall_managed_by_label_selector Firewall was applied via label selector and cannot be removed manually

HTTP Request

POST /firewalls/{id}/actions/remove_from_resources

Path Parameters

  • idinteger (int64) required

    ID of the Firewall

Request

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"remove_from":[{"server":{"id":42},"type":"server"}]}' \
6	"https://api.hetzner.cloud/v1/firewalls/$ID/actions/remove_from_resources"

Request

1{
2  "remove_from": [
3    {
4      "server": {
5        "id": 42
6      },
7      "type": "server"
8    }
9  ]
10}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "actions": [
3    {
4      "command": "remove_firewall",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 14,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        },
17        {
18          "id": 38,
19          "type": "firewall"
20        }
21      ],
22      "started": "2016-01-30T23:55:00+00:00",
23      "status": "success"
24    }
25  ]
26}

Set Rules

Sets the rules of a Firewall.

All existing rules will be overwritten. Pass an empty rules array to remove all rules. The maximum amount of rules that can be defined is 50.

Call specific error codes

Code Description
firewall_resource_not_found The resource the Firewall should be attached to was not found

HTTP Request

POST /firewalls/{id}/actions/set_rules

Path Parameters

  • idinteger (int64) required

    ID of the Firewall

Request

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"rules":[{"description":"Allow port 80","direction":"in","port":"80","protocol":"tcp","source_ips":["28.239.13.1/32","28.239.14.0/24","ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"]}]}' \
6	"https://api.hetzner.cloud/v1/firewalls/$ID/actions/set_rules"

Request

1{
2  "rules": [
3    {
4      "description": "Allow port 80",
5      "direction": "in",
6      "port": "80",
7      "protocol": "tcp",
8      "source_ips": [
9        "28.239.13.1/32",
10        "28.239.14.0/24",
11        "ff21:1eac:9a3b:ee58:5ca:990c:8bc9:c03b/128"
12      ]
13    }
14  ]
15}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "actions": [
3    {
4      "command": "set_firewall_rules",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 13,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 38,
15          "type": "firewall"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    },
21    {
22      "command": "apply_firewall",
23      "error": {
24        "code": "action_failed",
25        "message": "Action failed"
26      },
27      "finished": "2016-01-30T23:56:00+00:00",
28      "id": 14,
29      "progress": 100,
30      "resources": [
31        {
32          "id": 38,
33          "type": "firewall"
34        },
35        {
36          "id": 42,
37          "type": "server"
38        }
39      ],
40      "started": "2016-01-30T23:55:00+00:00",
41      "status": "success"
42    }
43  ]
44}

Get an Action for a Firewall

Returns a specific Action for a Firewall.

HTTP Request

GET /firewalls/{id}/actions/{action_id}

Path Parameters

  • idinteger (int64) required

    ID of the Firewall

  • action_idinteger (int64) required

    ID of the Action

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/firewalls/$ID/actions/$ACTION_ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "set_firewall_rules",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 38,
14        "type": "firewall"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Floating IPs

Floating IPs help you to create highly available setups. You can assign a Floating IP to any Server. The Server can then use this IP. You can reassign it to a different Server at any time, or you can choose to unassign the IP from Servers all together.

Floating IPs can be used globally. This means you can assign a Floating IP to a Server in one Location and later reassign it to a Server in a different Location. For optimal routing and latency Floating IPs should be used in the Location they were created in.

For Floating IPs to work with your Server, you must configure them inside your operation system.

Floating IPs of type ipv4 use a single IPv4 address as their ip property. Floating IPs of type ipv6 use a /64 network such as fc00::/64 as their ip property. Any IP address within that network can be used on your host.

Floating IPs are billed on a monthly basis.

Get all Floating IPs

Returns all Floating IP objects.

HTTP Request

GET /floating_ips

Query Parameters

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • sortstring
    Allowed: id id:asc id:desc created created:asc created:desc

    Can be used multiple times. Choices id id:asc id:desc created created:asc created:desc

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/floating_ips"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "floating_ips": [
3    {
4      "blocked": false,
5      "created": "2016-01-30T23:55:00+00:00",
6      "description": "This describes my resource",
7      "dns_ptr": [
8        {
9          "dns_ptr": "server.example.com",
10          "ip": "2001:db8::1"
11        }
12      ],
13      "home_location": {
14        "city": "Falkenstein",
15        "country": "DE",
16        "description": "Falkenstein DC Park 1",
17        "id": 1,
18        "latitude": 50.47612,
19        "longitude": 12.370071,
20        "name": "fsn1",
21        "network_zone": "eu-central"
22      },
23      "id": 42,
24      "ip": "131.232.99.1",
25      "labels": {
26        "environment": "prod",
27        "example.com/my": "label",
28        "just-a-key": ""
29      },
30      "name": "my-resource",
31      "protection": {
32        "delete": false
33      },
34      "server": 42,
35      "type": "ipv4"
36    }
37  ],
38  "meta": {
39    "pagination": {
40      "last_page": 4,
41      "next_page": 4,
42      "page": 3,
43      "per_page": 25,
44      "previous_page": 2,
45      "total_entries": 100
46    }
47  }
48}

Create a Floating IP

Creates a new Floating IP assigned to a Server. If you want to create a Floating IP that is not bound to a Server, you need to provide the home_location key instead of server . This can be either the ID or the name of the Location this IP shall be created in. Note that a Floating IP can be assigned to a Server in any Location later on. For optimal routing it is advised to use the Floating IP in the same Location it was created in.

HTTP Request

POST /floating_ips

Request

The type argument is required while home_location and server are mutually exclusive.

  • descriptionstring
  • home_locationstring

    Home Location (routing is optimized for that Location). Only optional if Server argument is passed.

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring
  • serverinteger (int64)

    ID of the Server to assign the Floating IP to

  • typestring required
    Allowed: ipv4 ipv6

    Floating IP type

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"description":"Web Frontend","home_location":"fsn1","labels":{"labelkey":"value"},"name":"Web Frontend","server":42,"type":"ipv4"}' \
6	"https://api.hetzner.cloud/v1/floating_ips"

Request

1{
2  "description": "Web Frontend",
3  "home_location": "fsn1",
4  "labels": {
5    "labelkey": "value"
6  },
7  "name": "Web Frontend",
8  "server": 42,
9  "type": "ipv4"
10}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "create_floating_ip",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  },
20  "floating_ip": {
21    "blocked": false,
22    "created": "2016-01-30T23:50:00+00:00",
23    "description": "Web Frontend",
24    "dns_ptr": [
25      {
26        "dns_ptr": "server.example.com",
27        "ip": "2001:db8::1"
28      }
29    ],
30    "home_location": {
31      "city": "Falkenstein",
32      "country": "DE",
33      "description": "Falkenstein DC Park 1",
34      "id": 1,
35      "latitude": 50.47612,
36      "longitude": 12.370071,
37      "name": "fsn1",
38      "network_zone": "eu-central"
39    },
40    "id": 4711,
41    "ip": "131.232.99.1",
42    "labels": {
43      "env": "dev"
44    },
45    "name": "Web Frontend",
46    "protection": {
47      "delete": false
48    },
49    "server": 42,
50    "type": "ipv4"
51  }
52}

Delete a Floating IP

Deletes a Floating IP. If it is currently assigned to a Server it will automatically get unassigned.

HTTP Request

DELETE /floating_ips/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Floating IP

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/floating_ips/$ID"

Response headers

1Status: 204

Get a Floating IP

Returns a specific Floating IP object.

HTTP Request

GET /floating_ips/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Floating IP

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/floating_ips/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "floating_ip": {
3    "blocked": false,
4    "created": "2016-01-30T23:55:00+00:00",
5    "description": "This describes my resource",
6    "dns_ptr": [
7      {
8        "dns_ptr": "server.example.com",
9        "ip": "2001:db8::1"
10      }
11    ],
12    "home_location": {
13      "city": "Falkenstein",
14      "country": "DE",
15      "description": "Falkenstein DC Park 1",
16      "id": 1,
17      "latitude": 50.47612,
18      "longitude": 12.370071,
19      "name": "fsn1",
20      "network_zone": "eu-central"
21    },
22    "id": 42,
23    "ip": "131.232.99.1",
24    "labels": {
25      "environment": "prod",
26      "example.com/my": "label",
27      "just-a-key": ""
28    },
29    "name": "my-resource",
30    "protection": {
31      "delete": false
32    },
33    "server": 42,
34    "type": "ipv4"
35  }
36}

Update a Floating IP

Updates the description or labels of a Floating IP. Also note that when updating labels, the Floating IP’s current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

HTTP Request

PUT /floating_ips/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Floating IP

Request

  • descriptionstring

    New Description to set

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring

    New unique name to set

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"description":"Web Frontend","labels":{"labelkey":"value"},"name":"Web Frontend"}' \
6	"https://api.hetzner.cloud/v1/floating_ips/$ID"

Request

1{
2  "description": "Web Frontend",
3  "labels": {
4    "labelkey": "value"
5  },
6  "name": "Web Frontend"
7}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "floating_ip": {
3    "blocked": false,
4    "created": "2016-01-30T23:50:00+00:00",
5    "description": "Web Frontend",
6    "dns_ptr": [
7      {
8        "dns_ptr": "server.example.com",
9        "ip": "2001:db8::1"
10      }
11    ],
12    "home_location": {
13      "city": "Falkenstein",
14      "country": "DE",
15      "description": "Falkenstein DC Park 1",
16      "id": 1,
17      "latitude": 50.47612,
18      "longitude": 12.370071,
19      "name": "fsn1",
20      "network_zone": "eu-central"
21    },
22    "id": 4711,
23    "ip": "131.232.99.1",
24    "labels": {
25      "labelkey": "value"
26    },
27    "name": "Web Frontend",
28    "protection": {
29      "delete": false
30    },
31    "server": 42,
32    "type": "ipv4"
33  }
34}

Floating IP Actions

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status and id parameter.

HTTP Request

GET /floating_ips/actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/floating_ips/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /floating_ips/actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Action.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/floating_ips/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get all Actions for a Floating IP

Returns all Action objects for a Floating IP. You can sort the results by using the sort URI parameter, and filter them with the status parameter.

HTTP Request

GET /floating_ips/{id}/actions

Path Parameters

  • idinteger (int64) required

    ID of the Floating IP

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/floating_ips/$ID/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "assign_floating_ip",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 13,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 4711,
15          "type": "server"
16        },
17        {
18          "id": 4712,
19          "type": "floating_ip"
20        }
21      ],
22      "started": "2016-01-30T23:55:00+00:00",
23      "status": "success"
24    }
25  ]
26}

Assign a Floating IP to a Server

Assigns a Floating IP to a Server.

HTTP Request

POST /floating_ips/{id}/actions/assign

Path Parameters

  • idinteger (int64) required

    ID of the Floating IP

Request

  • serverinteger (int64) required

    ID of the Server the Floating IP shall be assigned to

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"server":42}' \
6	"https://api.hetzner.cloud/v1/floating_ips/$ID/actions/assign"

Request

1{
2  "server": 42
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "assign_floating_ip",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "floating_ip"
19      }
20    ],
21    "started": "2016-01-30T23:55:00+00:00",
22    "status": "success"
23  }
24}

Change reverse DNS entry for a Floating IP

Changes the hostname that will appear when getting the hostname belonging to this Floating IP.

HTTP Request

POST /floating_ips/{id}/actions/change_dns_ptr

Path Parameters

  • idinteger (int64) required

    ID of the Floating IP

Request

Select the IP address for which to change the DNS entry by passing ip . For a Floating IP of type ipv4 this must exactly match the IP address of the Floating IP. For a Floating IP of type ipv6 this must be a single IP within the IPv6 /64 range that belongs to this Floating IP. You can add up to 100 IPv6 reverse DNS entries.

The target hostname is set by passing dns_ptr .

  • dns_ptrstring – nullablerequired

    Hostname to set as a reverse DNS PTR entry, will reset to original default value if null

  • ipstring required

    IP address for which to set the reverse DNS entry

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"dns_ptr":"server02.example.com","ip":"1.2.3.4"}' \
6	"https://api.hetzner.cloud/v1/floating_ips/$ID/actions/change_dns_ptr"

Request

1{
2  "dns_ptr": "server02.example.com",
3  "ip": "1.2.3.4"
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_dns_ptr",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "floating_ip"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Change Floating IP Protection

Changes the protection configuration of the Floating IP.

HTTP Request

POST /floating_ips/{id}/actions/change_protection

Path Parameters

  • idinteger (int64) required

    ID of the Floating IP

Request

  • deleteboolean

    If true, prevents the Floating IP from being deleted

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"delete":true}' \
6	"https://api.hetzner.cloud/v1/floating_ips/$ID/actions/change_protection"

Request

1{
2  "delete": true
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_protection",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "floating_ip"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Unassign a Floating IP

Unassigns a Floating IP, resulting in it being unreachable. You may assign it to a Server again at a later time.

HTTP Request

POST /floating_ips/{id}/actions/unassign

Path Parameters

  • idinteger (int64) required

    ID of the Floating IP

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/floating_ips/$ID/actions/unassign"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "unassign_floating_ip",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "floating_ip"
19      }
20    ],
21    "started": "2016-01-30T23:55:00+00:00",
22    "status": "success"
23  }
24}

Get an Action for a Floating IP

Returns a specific Action object for a Floating IP.

HTTP Request

GET /floating_ips/{id}/actions/{action_id}

Path Parameters

  • idinteger (int64) required

    ID of the Floating IP

  • action_idinteger (int64) required

    ID of the Action

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/floating_ips/$ID/actions/$ACTION_ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "assign_floating_ip",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "floating_ip"
19      }
20    ],
21    "started": "2016-01-30T23:55:00+00:00",
22    "status": "success"
23  }
24}

Images

Images are blueprints for your VM disks. They can be of different types:

System Images

Distribution Images maintained by us, e.g. “Ubuntu 20.04”

Snapshot Images

Maintained by you, for example “Ubuntu 20.04 with my own settings”. These are billed per GB per month.

Backup Images

Daily Backups of your Server. Will automatically be created for Servers which have backups enabled (POST /servers/{id}/actions/enable_backup)

Bound to exactly one Server. If you delete the Server, you also delete all backups bound to it. You may convert backup Images to snapshot Images to keep them.

These are billed at 20% of your instance price for 7 backup slots.

App Images

Prebuild images with specific software configurations, e.g. “Wordpress”. All app images are created by us.

Get all Images

Returns all Image objects. You can select specific Image types only and sort the results by using URI parameters.

HTTP Request

GET /images

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc created created:asc created:desc

    Sort resources by field and direction. Can be used multiple times. For more information, see "Sorting".

  • typestring
    Allowed: system snapshot backup app

    Can be used multiple times.

  • statusstring
    Allowed: available creating

    Can be used multiple times. The response will only contain Images matching the status.

  • bound_tostring

    Can be used multiple times. Server ID linked to the Image. Only available for Images of type backup

  • include_deprecatedboolean

    Can be used multiple times.

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • architecturestring

    Return only Images with the given architecture.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/images"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "images": [
3    {
4      "architecture": "x86",
5      "bound_to": null,
6      "created": "2016-01-30T23:55:00+00:00",
7      "created_from": {
8        "id": 1,
9        "name": "Server"
10      },
11      "deleted": null,
12      "deprecated": "2018-02-28T00:00:00+00:00",
13      "description": "Ubuntu 20.04 Standard 64 bit",
14      "disk_size": 10,
15      "id": 42,
16      "image_size": 2.3,
17      "labels": {
18        "environment": "prod",
19        "example.com/my": "label",
20        "just-a-key": ""
21      },
22      "name": "ubuntu-20.04",
23      "os_flavor": "ubuntu",
24      "os_version": "20.04",
25      "protection": {
26        "delete": false
27      },
28      "rapid_deploy": false,
29      "status": "available",
30      "type": "snapshot"
31    }
32  ],
33  "meta": {
34    "pagination": {
35      "last_page": 4,
36      "next_page": 4,
37      "page": 3,
38      "per_page": 25,
39      "previous_page": 2,
40      "total_entries": 100
41    }
42  }
43}

Delete an Image

Deletes an Image. Only Images of type snapshot and backup can be deleted.

HTTP Request

DELETE /images/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Image

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/images/$ID"

Response headers

1Status: 204

Get an Image

Returns a specific Image object.

HTTP Request

GET /images/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Image

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/images/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "image": {
3    "architecture": "x86",
4    "bound_to": null,
5    "created": "2016-01-30T23:55:00+00:00",
6    "created_from": {
7      "id": 1,
8      "name": "Server"
9    },
10    "deleted": null,
11    "deprecated": "2018-02-28T00:00:00+00:00",
12    "description": "Ubuntu 20.04 Standard 64 bit",
13    "disk_size": 10,
14    "id": 42,
15    "image_size": 2.3,
16    "labels": {
17      "environment": "prod",
18      "example.com/my": "label",
19      "just-a-key": ""
20    },
21    "name": "ubuntu-20.04",
22    "os_flavor": "ubuntu",
23    "os_version": "20.04",
24    "protection": {
25      "delete": false
26    },
27    "rapid_deploy": false,
28    "status": "available",
29    "type": "snapshot"
30  }
31}

Update an Image

Updates the Image. You may change the description, convert a Backup Image to a Snapshot Image or change the Image labels. Only Images of type snapshot and backup can be updated.

Note that when updating labels, the current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

HTTP Request

PUT /images/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Image

Request

  • descriptionstring

    New description of Image

  • labelsobject

    User-defined labels (key-value pairs)

  • typestring
    Allowed: snapshot

    Destination Image type to convert to

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"description":"My new Image description","labels":{"labelkey":"value"},"type":"snapshot"}' \
6	"https://api.hetzner.cloud/v1/images/$ID"

Request

1{
2  "description": "My new Image description",
3  "labels": {
4    "labelkey": "value"
5  },
6  "type": "snapshot"
7}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "image": {
3    "architecture": "x86",
4    "bound_to": null,
5    "created": "2016-01-30T23:50:00+00:00",
6    "created_from": {
7      "id": 1,
8      "name": "Server"
9    },
10    "deleted": null,
11    "deprecated": "2018-02-28T00:00:00+00:00",
12    "description": "My new Image description",
13    "disk_size": 10,
14    "id": 4711,
15    "image_size": 2.3,
16    "labels": {
17      "labelkey": "value"
18    },
19    "name": null,
20    "os_flavor": "ubuntu",
21    "os_version": "20.04",
22    "protection": {
23      "delete": false
24    },
25    "rapid_deploy": false,
26    "status": "available",
27    "type": "snapshot"
28  }
29}

Image Actions

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status and id parameter.

HTTP Request

GET /images/actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/images/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /images/actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Action.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/images/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get all Actions for an Image

Returns all Action objects for an Image. You can sort the results by using the sort URI parameter, and filter them with the status parameter.

HTTP Request

GET /images/{id}/actions

Path Parameters

  • idinteger (int64) required

    ID of the Image

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/images/$ID/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "change_protection",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 13,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 4711,
15          "type": "image"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ]
22}

Change Image Protection

Changes the protection configuration of the Image. Can only be used on snapshots.

HTTP Request

POST /images/{id}/actions/change_protection

Path Parameters

  • idinteger (int64) required

    ID of the Image

Request

  • deleteboolean

    If true, prevents the snapshot from being deleted

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"delete":true}' \
6	"https://api.hetzner.cloud/v1/images/$ID/actions/change_protection"

Request

1{
2  "delete": true
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_protection",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "image"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get an Action for an Image

Returns a specific Action for an Image.

HTTP Request

GET /images/{id}/actions/{action_id}

Path Parameters

  • idinteger (int64) required

    ID of the Image

  • action_idinteger (int64) required

    ID of the Action

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/images/$ID/actions/$ACTION_ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "change_protection",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "image"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

ISOs

ISOs are read-only Images of DVDs. While we recommend using our Image functionality to install your Servers we also provide some stock ISOs so you can install more exotic operating systems by yourself.

On request our support uploads a private ISO just for you. These are marked with type private and only visible in your Project.

To attach an ISO to your Server use POST /servers/{id}/actions/attach_iso.

Get all ISOs

Returns all available ISO objects.

HTTP Request

GET /isos

Query Parameters

  • namestring

    Can be used to filter ISOs by their name. The response will only contain the ISO matching the specified name.

  • architecturestring

    Return only ISOs with the given architecture.

  • include_architecture_wildcardboolean

    Include Images with wildcard architecture (architecture is null). Works only if architecture filter is specified.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/isos"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "isos": [
3    {
4      "architecture": "x86",
5      "deprecation": {
6        "announced": "2023-06-01T00:00:00+00:00",
7        "unavailable_after": "2023-09-01T00:00:00+00:00"
8      },
9      "description": "FreeBSD 11.0 x64",
10      "id": 42,
11      "name": "FreeBSD-11.0-RELEASE-amd64-dvd1",
12      "type": "public"
13    }
14  ],
15  "meta": {
16    "pagination": {
17      "last_page": 4,
18      "next_page": 4,
19      "page": 3,
20      "per_page": 25,
21      "previous_page": 2,
22      "total_entries": 100
23    }
24  }
25}

Get an ISO

Returns a specific ISO object.

HTTP Request

GET /isos/{id}

Path Parameters

  • idinteger (int64) required

    ID of the ISO

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/isos/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "iso": {
3    "architecture": "x86",
4    "deprecation": {
5      "announced": "2023-06-01T00:00:00+00:00",
6      "unavailable_after": "2023-09-01T00:00:00+00:00"
7    },
8    "description": "FreeBSD 11.0 x64",
9    "id": 42,
10    "name": "FreeBSD-11.0-RELEASE-amd64-dvd1",
11    "type": "public"
12  }
13}

Load Balancers

Get all Load Balancers

Gets all existing Load Balancers that you have available.

HTTP Request

GET /load_balancers

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc created created:asc created:desc

    Sort resources by field and direction. Can be used multiple times. For more information, see "Sorting".

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/load_balancers"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "load_balancers": [
3    {
4      "algorithm": {
5        "type": "round_robin"
6      },
7      "created": "2016-01-30T23:55:00+00:00",
8      "id": 42,
9      "included_traffic": 10000,
10      "ingoing_traffic": null,
11      "labels": {
12        "environment": "prod",
13        "example.com/my": "label",
14        "just-a-key": ""
15      },
16      "load_balancer_type": {
17        "deprecated": "2016-01-30T23:50:00+00:00",
18        "description": "LB11",
19        "id": 1,
20        "max_assigned_certificates": 10,
21        "max_connections": 20000,
22        "max_services": 5,
23        "max_targets": 25,
24        "name": "lb11",
25        "prices": [
26          {
27            "location": "fsn1",
28            "price_hourly": {
29              "gross": "1.1900000000000000",
30              "net": "1.0000000000"
31            },
32            "price_monthly": {
33              "gross": "1.1900000000000000",
34              "net": "1.0000000000"
35            }
36          }
37        ]
38      },
39      "location": {
40        "city": "Falkenstein",
41        "country": "DE",
42        "description": "Falkenstein DC Park 1",
43        "id": 1,
44        "latitude": 50.47612,
45        "longitude": 12.370071,
46        "name": "fsn1",
47        "network_zone": "eu-central"
48      },
49      "name": "my-resource",
50      "outgoing_traffic": null,
51      "private_net": [
52        {
53          "ip": "10.0.0.2",
54          "network": 4711
55        }
56      ],
57      "protection": {
58        "delete": false
59      },
60      "public_net": {
61        "enabled": false,
62        "ipv4": {
63          "dns_ptr": "lb1.example.com",
64          "ip": "1.2.3.4"
65        },
66        "ipv6": {
67          "dns_ptr": "lb1.example.com",
68          "ip": "2001:db8::1"
69        }
70      },
71      "services": [
72        {
73          "destination_port": 80,
74          "health_check": {
75            "http": {
76              "domain": "example.com",
77              "path": "/",
78              "response": "{\"status\": \"ok\"}",
79              "status_codes": [
80                "2??",
81                "3??"
82              ],
83              "tls": false
84            },
85            "interval": 15,
86            "port": 4711,
87            "protocol": "http",
88            "retries": 3,
89            "timeout": 10
90          },
91          "http": {
92            "certificates": [
93              897
94            ],
95            "cookie_lifetime": 300,
96            "cookie_name": "HCLBSTICKY",
97            "redirect_http": true,
98            "sticky_sessions": true
99          },
100          "listen_port": 443,
101          "protocol": "https",
102          "proxyprotocol": false
103        }
104      ],
105      "targets": [
106        {
107          "health_status": [
108            {
109              "listen_port": 443,
110              "status": "healthy"
111            }
112          ],
113          "ip": {
114            "ip": "203.0.113.1"
115          },
116          "label_selector": {
117            "selector": "env=prod"
118          },
119          "server": {
120            "id": 80
121          },
122          "targets": [
123            {
124              "health_status": [
125                {
126                  "listen_port": 443,
127                  "status": "healthy"
128                }
129              ],
130              "server": {
131                "id": 80
132              },
133              "type": "server",
134              "use_private_ip": false
135            }
136          ],
137          "type": "server",
138          "use_private_ip": false
139        }
140      ]
141    }
142  ],
143  "meta": {
144    "pagination": {
145      "last_page": 4,
146      "next_page": 4,
147      "page": 3,
148      "per_page": 25,
149      "previous_page": 2,
150      "total_entries": 100
151    }
152  }
153}

Create a Load Balancer

Creates a Load Balancer.

Call specific error codes

Code Description
cloud_resource_ip_not_allowed The IP you are trying to add as a target belongs to a Hetzner Cloud resource
ip_not_owned The IP is not owned by the owner of the project of the Load Balancer
load_balancer_not_attached_to_network The Load Balancer is not attached to a network
robot_unavailable Robot was not available. The caller may retry the operation after a short delay.
server_not_attached_to_network The server you are trying to add as a target is not attached to the same network as the Load Balancer
source_port_already_used The source port you are trying to add is already in use
target_already_defined The Load Balancer target you are trying to define is already defined

HTTP Request

POST /load_balancers

Request

  • load_balancer_typestring required

    ID or name of the Load Balancer type this Load Balancer should be created with

  • locationstring

    ID or name of Location to create Load Balancer in

  • namestring required

    Name of the Load Balancer

  • networkinteger (int64)

    ID of the network the Load Balancer should be attached to on creation

  • network_zonestring

    Name of network zone

  • public_interfaceboolean

    Enable or disable the public interface of the Load Balancer

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"algorithm":{"type":"round_robin"},"labels":{"labelkey":"value"},"load_balancer_type":"lb11","location":"string","name":"Web Frontend","network":123,"network_zone":"eu-central","public_interface":true,"services":[{"destination_port":80,"health_check":{"http":{"domain":"example.com","path":"/","response":"{\"status\": \"ok\"}","status_codes":["2??","3??"],"tls":false},"interval":15,"port":4711,"protocol":"http","retries":3,"timeout":10},"http":{"certificates":[897],"cookie_lifetime":300,"cookie_name":"HCLBSTICKY","redirect_http":true,"sticky_sessions":true},"listen_port":443,"protocol":"https","proxyprotocol":false}],"targets":[{"health_status":[{"listen_port":443,"status":"healthy"}],"ip":{"ip":"203.0.113.1"},"label_selector":{"selector":"env=prod"},"server":{"id":80},"targets":[{"health_status":[{"listen_port":443,"status":"healthy"}],"server":{"id":80},"type":"server","use_private_ip":false}],"type":"server","use_private_ip":false}]}' \
6	"https://api.hetzner.cloud/v1/load_balancers"

Request

1{
2  "algorithm": {
3    "type": "round_robin"
4  },
5  "labels": {
6    "labelkey": "value"
7  },
8  "load_balancer_type": "lb11",
9  "location": "string",
10  "name": "Web Frontend",
11  "network": 123,
12  "network_zone": "eu-central",
13  "public_interface": true,
14  "services": [
15    {
16      "destination_port": 80,
17      "health_check": {
18        "http": {
19          "domain": "example.com",
20          "path": "/",
21          "response": "{\"status\": \"ok\"}",
22          "status_codes": [
23            "2??",
24            "3??"
25          ],
26          "tls": false
27        },
28        "interval": 15,
29        "port": 4711,
30        "protocol": "http",
31        "retries": 3,
32        "timeout": 10
33      },
34      "http": {
35        "certificates": [
36          897
37        ],
38        "cookie_lifetime": 300,
39        "cookie_name": "HCLBSTICKY",
40        "redirect_http": true,
41        "sticky_sessions": true
42      },
43      "listen_port": 443,
44      "protocol": "https",
45      "proxyprotocol": false
46    }
47  ],
48  "targets": [
49    {
50      "health_status": [
51        {
52          "listen_port": 443,
53          "status": "healthy"
54        }
55      ],
56      "ip": {
57        "ip": "203.0.113.1"
58      },
59      "label_selector": {
60        "selector": "env=prod"
61      },
62      "server": {
63        "id": 80
64      },
65      "targets": [
66        {
67          "health_status": [
68            {
69              "listen_port": 443,
70              "status": "healthy"
71            }
72          ],
73          "server": {
74            "id": 80
75          },
76          "type": "server",
77          "use_private_ip": false
78        }
79      ],
80      "type": "server",
81      "use_private_ip": false
82    }
83  ]
84}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "create_load_balancer",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  },
20  "load_balancer": {
21    "algorithm": {
22      "type": "round_robin"
23    },
24    "created": "2016-01-30T23:50:00+00:00",
25    "id": 4711,
26    "included_traffic": 654321,
27    "ingoing_traffic": 123456,
28    "labels": {
29      "env": "dev"
30    },
31    "load_balancer_type": {
32      "deprecated": "2016-01-30T23:50:00+00:00",
33      "description": "LB11",
34      "id": 1,
35      "max_assigned_certificates": 10,
36      "max_connections": 20000,
37      "max_services": 5,
38      "max_targets": 25,
39      "name": "lb11",
40      "prices": [
41        {
42          "location": "fsn1",
43          "price_hourly": {
44            "gross": "1.1900000000000000",
45            "net": "1.0000000000"
46          },
47          "price_monthly": {
48            "gross": "1.1900000000000000",
49            "net": "1.0000000000"
50          }
51        }
52      ]
53    },
54    "location": {
55      "city": "Falkenstein",
56      "country": "DE",
57      "description": "Falkenstein DC Park 1",
58      "id": 1,
59      "latitude": 50.47612,
60      "longitude": 12.370071,
61      "name": "fsn1",
62      "network_zone": "eu-central"
63    },
64    "name": "Web Frontend",
65    "outgoing_traffic": 123456,
66    "private_net": [
67      {
68        "ip": "10.0.0.2",
69        "network": 4711
70      }
71    ],
72    "protection": {
73      "delete": false
74    },
75    "public_net": {
76      "enabled": false,
77      "ipv4": {
78        "ip": "1.2.3.4"
79      },
80      "ipv6": {
81        "ip": "2001:db8::1"
82      }
83    },
84    "services": [
85      {
86        "destination_port": 80,
87        "health_check": {
88          "http": {
89            "domain": "example.com",
90            "path": "/",
91            "response": "{\"status\": \"ok\"}",
92            "status_codes": [
93              "2??,3??"
94            ],
95            "tls": false
96          },
97          "interval": 15,
98          "port": 4711,
99          "protocol": "http",
100          "retries": 3,
101          "timeout": 10
102        },
103        "http": {
104          "certificates": [
105            897
106          ],
107          "cookie_lifetime": 300,
108          "cookie_name": "HCLBSTICKY",
109          "redirect_http": true,
110          "sticky_sessions": true
111        },
112        "listen_port": 443,
113        "protocol": "http",
114        "proxyprotocol": false
115      }
116    ],
117    "targets": [
118      {
119        "health_status": [
120          {
121            "listen_port": 443,
122            "status": "healthy"
123          }
124        ],
125        "server": {
126          "id": 80
127        },
128        "targets": [
129          {
130            "health_status": [
131              {
132                "listen_port": 443,
133                "status": "healthy"
134              }
135            ],
136            "server": {
137              "id": 80
138            },
139            "type": "server",
140            "use_private_ip": true
141          }
142        ],
143        "type": "server",
144        "use_private_ip": true
145      }
146    ]
147  }
148}

Delete a Load Balancer

Deletes a Load Balancer.

HTTP Request

DELETE /load_balancers/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/load_balancers/$ID"

Response headers

1Status: 204

Get a Load Balancer

Gets a specific Load Balancer object.

HTTP Request

GET /load_balancers/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/load_balancers/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "load_balancer": {
3    "algorithm": {
4      "type": "round_robin"
5    },
6    "created": "2016-01-30T23:55:00+00:00",
7    "id": 42,
8    "included_traffic": 10000,
9    "ingoing_traffic": null,
10    "labels": {
11      "environment": "prod",
12      "example.com/my": "label",
13      "just-a-key": ""
14    },
15    "load_balancer_type": {
16      "deprecated": "2016-01-30T23:50:00+00:00",
17      "description": "LB11",
18      "id": 1,
19      "max_assigned_certificates": 10,
20      "max_connections": 20000,
21      "max_services": 5,
22      "max_targets": 25,
23      "name": "lb11",
24      "prices": [
25        {
26          "location": "fsn1",
27          "price_hourly": {
28            "gross": "1.1900000000000000",
29            "net": "1.0000000000"
30          },
31          "price_monthly": {
32            "gross": "1.1900000000000000",
33            "net": "1.0000000000"
34          }
35        }
36      ]
37    },
38    "location": {
39      "city": "Falkenstein",
40      "country": "DE",
41      "description": "Falkenstein DC Park 1",
42      "id": 1,
43      "latitude": 50.47612,
44      "longitude": 12.370071,
45      "name": "fsn1",
46      "network_zone": "eu-central"
47    },
48    "name": "my-resource",
49    "outgoing_traffic": null,
50    "private_net": [
51      {
52        "ip": "10.0.0.2",
53        "network": 4711
54      }
55    ],
56    "protection": {
57      "delete": false
58    },
59    "public_net": {
60      "enabled": false,
61      "ipv4": {
62        "dns_ptr": "lb1.example.com",
63        "ip": "1.2.3.4"
64      },
65      "ipv6": {
66        "dns_ptr": "lb1.example.com",
67        "ip": "2001:db8::1"
68      }
69    },
70    "services": [
71      {
72        "destination_port": 80,
73        "health_check": {
74          "http": {
75            "domain": "example.com",
76            "path": "/",
77            "response": "{\"status\": \"ok\"}",
78            "status_codes": [
79              "2??",
80              "3??"
81            ],
82            "tls": false
83          },
84          "interval": 15,
85          "port": 4711,
86          "protocol": "http",
87          "retries": 3,
88          "timeout": 10
89        },
90        "http": {
91          "certificates": [
92            897
93          ],
94          "cookie_lifetime": 300,
95          "cookie_name": "HCLBSTICKY",
96          "redirect_http": true,
97          "sticky_sessions": true
98        },
99        "listen_port": 443,
100        "protocol": "https",
101        "proxyprotocol": false
102      }
103    ],
104    "targets": [
105      {
106        "health_status": [
107          {
108            "listen_port": 443,
109            "status": "healthy"
110          }
111        ],
112        "ip": {
113          "ip": "203.0.113.1"
114        },
115        "label_selector": {
116          "selector": "env=prod"
117        },
118        "server": {
119          "id": 80
120        },
121        "targets": [
122          {
123            "health_status": [
124              {
125                "listen_port": 443,
126                "status": "healthy"
127              }
128            ],
129            "server": {
130              "id": 80
131            },
132            "type": "server",
133            "use_private_ip": false
134          }
135        ],
136        "type": "server",
137        "use_private_ip": false
138      }
139    ]
140  }
141}

Update a Load Balancer

Updates a Load Balancer. You can update a Load Balancer’s name and a Load Balancer’s labels.

Note that when updating labels, the Load Balancer’s current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

Note: if the Load Balancer object changes during the request, the response will be a “conflict” error.

HTTP Request

PUT /load_balancers/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring

    New Load Balancer name

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"labels":{"labelkey":"value"},"name":"new-name"}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID"

Request

1{
2  "labels": {
3    "labelkey": "value"
4  },
5  "name": "new-name"
6}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "load_balancer": {
3    "algorithm": {
4      "type": "round_robin"
5    },
6    "created": "2016-01-30T23:50:00+00:00",
7    "id": 4711,
8    "included_traffic": 654321,
9    "ingoing_traffic": 123456,
10    "labels": {
11      "labelkey": "value"
12    },
13    "load_balancer_type": {
14      "deprecated": "2016-01-30T23:50:00+00:00",
15      "description": "LB11",
16      "id": 1,
17      "max_assigned_certificates": 10,
18      "max_connections": 20000,
19      "max_services": 5,
20      "max_targets": 25,
21      "name": "lb11",
22      "prices": [
23        {
24          "location": "fsn1",
25          "price_hourly": {
26            "gross": "1.1900000000000000",
27            "net": "1.0000000000"
28          },
29          "price_monthly": {
30            "gross": "1.1900000000000000",
31            "net": "1.0000000000"
32          }
33        }
34      ]
35    },
36    "location": {
37      "city": "Falkenstein",
38      "country": "DE",
39      "description": "Falkenstein DC Park 1",
40      "id": 1,
41      "latitude": 50.47612,
42      "longitude": 12.370071,
43      "name": "fsn1",
44      "network_zone": "eu-central"
45    },
46    "name": "new-name",
47    "outgoing_traffic": 123456,
48    "private_net": [
49      {
50        "ip": "10.0.0.2",
51        "network": 4711
52      }
53    ],
54    "protection": {
55      "delete": false
56    },
57    "public_net": {
58      "enabled": false,
59      "ipv4": {
60        "ip": "1.2.3.4"
61      },
62      "ipv6": {
63        "ip": "2001:db8::1"
64      }
65    },
66    "services": [
67      {
68        "destination_port": 80,
69        "health_check": {
70          "http": {
71            "domain": "example.com",
72            "path": "/",
73            "response": "{\"status\": \"ok\"}",
74            "status_codes": [
75              "2??,3??"
76            ],
77            "tls": false
78          },
79          "interval": 15,
80          "port": 4711,
81          "protocol": "http",
82          "retries": 3,
83          "timeout": 10
84        },
85        "http": {
86          "certificates": [
87            897
88          ],
89          "cookie_lifetime": 300,
90          "cookie_name": "HCLBSTICKY",
91          "redirect_http": true,
92          "sticky_sessions": true
93        },
94        "listen_port": 443,
95        "protocol": "http",
96        "proxyprotocol": false
97      }
98    ],
99    "targets": [
100      {
101        "health_status": [
102          {
103            "listen_port": 443,
104            "status": "healthy"
105          }
106        ],
107        "ip": {
108          "ip": "203.0.113.1"
109        },
110        "label_selector": {
111          "selector": "env=prod"
112        },
113        "server": {
114          "id": 80
115        },
116        "targets": [
117          {
118            "health_status": [
119              {
120                "listen_port": 443,
121                "status": "healthy"
122              }
123            ],
124            "server": {
125              "id": 80
126            },
127            "type": "server",
128            "use_private_ip": true
129          }
130        ],
131        "type": "server",
132        "use_private_ip": true
133      }
134    ]
135  }
136}

Get Metrics for a LoadBalancer

You must specify the type of metric to get: open_connections , connections_per_second , requests_per_second or bandwidth . You can also specify more than one type by comma separation, e.g. requests_per_second,bandwidth .

Depending on the type you will get different time series data:

Type Timeseries Unit Description
open_connections open_connections number Open connections
connections_per_second connections_per_second connections/s Connections per second
requests_per_second requests_per_second requests/s Requests per second
bandwidth bandwidth.in bytes/s Ingress bandwidth
bandwidth.out bytes/s Egress bandwidth

Metrics are available for the last 30 days only.

If you do not provide the step argument we will automatically adjust it so that 200 samples are returned.

We limit the number of samples to a maximum of 500 and will adjust the step parameter accordingly.

HTTP Request

GET /load_balancers/{id}/metrics

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Query Parameters

  • typestring required
    Allowed: open_connections connections_per_second requests_per_second bandwidth

    Type of metrics to get

  • startstring required

    Start of period to get Metrics for (in ISO-8601 format)

  • endstring required

    End of period to get Metrics for (in ISO-8601 format)

  • stepstring

    Resolution of results in seconds

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/load_balancers/$ID/metrics?type=$TYPE&start=$START&end=$END"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "metrics": {
3    "end": "2017-01-01T23:00:00+00:00",
4    "start": "2017-01-01T00:00:00+00:00",
5    "step": 60,
6    "time_series": {
7      "name_of_timeseries": {
8        "values": [
9          [
10            1435781470.622,
11            "42"
12          ],
13          [
14            1435781471.622,
15            "43"
16          ]
17        ]
18      }
19    }
20  }
21}

Load Balancer Actions

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status and id parameter.

HTTP Request

GET /load_balancers/actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/load_balancers/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /load_balancers/actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Action.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/load_balancers/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get all Actions for a Load Balancer

Returns all Action objects for a Load Balancer. You can sort the results by using the sort URI parameter, and filter them with the status parameter.

HTTP Request

GET /load_balancers/{id}/actions

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "add_service",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 13,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 4711,
15          "type": "load_balancer"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ]
22}

Add Service

Adds a service to a Load Balancer.

Call specific error codes

Code Description
source_port_already_used The source port you are trying to add is already in use

HTTP Request

POST /load_balancers/{id}/actions/add_service

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • destination_portinteger required

    Port the Load Balancer will balance to

  • listen_portinteger required

    Port the Load Balancer listens on

  • protocolstring required
    Allowed: tcp http https

    Protocol of the Load Balancer

  • proxyprotocolboolean required

    Is Proxyprotocol enabled or not

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"destination_port":80,"health_check":{"http":{"domain":"example.com","path":"/","response":"{\"status\": \"ok\"}","status_codes":["2??","3??"],"tls":false},"interval":15,"port":4711,"protocol":"http","retries":3,"timeout":10},"http":{"certificates":[897],"cookie_lifetime":300,"cookie_name":"HCLBSTICKY","redirect_http":true,"sticky_sessions":true},"listen_port":443,"protocol":"https","proxyprotocol":false}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/add_service"

Request

1{
2  "destination_port": 80,
3  "health_check": {
4    "http": {
5      "domain": "example.com",
6      "path": "/",
7      "response": "{\"status\": \"ok\"}",
8      "status_codes": [
9        "2??",
10        "3??"
11      ],
12      "tls": false
13    },
14    "interval": 15,
15    "port": 4711,
16    "protocol": "http",
17    "retries": 3,
18    "timeout": 10
19  },
20  "http": {
21    "certificates": [
22      897
23    ],
24    "cookie_lifetime": 300,
25    "cookie_name": "HCLBSTICKY",
26    "redirect_http": true,
27    "sticky_sessions": true
28  },
29  "listen_port": 443,
30  "protocol": "https",
31  "proxyprotocol": false
32}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "add_service",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Add Target

Adds a target to a Load Balancer.

Call specific error codes

Code Description
cloud_resource_ip_not_allowed The IP you are trying to add as a target belongs to a Hetzner Cloud resource
ip_not_owned The IP you are trying to add as a target is not owned by the Project owner
load_balancer_not_attached_to_network The Load Balancer is not attached to a network
robot_unavailable Robot was not available. The caller may retry the operation after a short delay.
server_not_attached_to_network The server you are trying to add as a target is not attached to the same network as the Load Balancer
target_already_defined The Load Balancer target you are trying to define is already defined

HTTP Request

POST /load_balancers/{id}/actions/add_target

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • typestring required
    Allowed: server label_selector ip

    Type of the resource

  • use_private_ipboolean
    Default: false

    Use the private network IP instead of the public IP of the Server, requires the Server and Load Balancer to be in the same network.

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"ip":{"ip":"203.0.113.1"},"label_selector":{"selector":"env=prod"},"server":{"id":80},"type":"server","use_private_ip":true}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/add_target"

Request

1{
2  "ip": {
3    "ip": "203.0.113.1"
4  },
5  "label_selector": {
6    "selector": "env=prod"
7  },
8  "server": {
9    "id": 80
10  },
11  "type": "server",
12  "use_private_ip": true
13}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "add_target",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Attach a Load Balancer to a Network

Attach a Load Balancer to a Network.

Call specific error codes

Code Description
load_balancer_already_attached The Load Balancer is already attached to a network
ip_not_available The provided Network IP is not available
no_subnet_available No Subnet or IP is available for the Load Balancer within the network

HTTP Request

POST /load_balancers/{id}/actions/attach_to_network

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • ipstring

    IP to request to be assigned to this Load Balancer; if you do not provide this then you will be auto assigned an IP address

  • networkinteger (int64) required

    ID of an existing network to attach the Load Balancer to

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"ip":"10.0.1.1","network":4711}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/attach_to_network"

Request

1{
2  "ip": "10.0.1.1",
3  "network": 4711
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "attach_to_network",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Change Algorithm

Change the algorithm that determines to which target new requests are sent.

HTTP Request

POST /load_balancers/{id}/actions/change_algorithm

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • typestring required
    Allowed: round_robin least_connections

    Algorithm of the Load Balancer

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"type":"round_robin"}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/change_algorithm"

Request

1{
2  "type": "round_robin"
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_algorithm",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Change reverse DNS entry for this Load Balancer

Changes the hostname that will appear when getting the hostname belonging to the public IPs (IPv4 and IPv6) of this Load Balancer.

Floating IPs assigned to the Server are not affected by this.

HTTP Request

POST /load_balancers/{id}/actions/change_dns_ptr

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

Select the IP address for which to change the DNS entry by passing ip . It can be either IPv4 or IPv6. The target hostname is set by passing dns_ptr .

  • dns_ptrstring – nullablerequired

    Hostname to set as a reverse DNS PTR entry

  • ipstring required

    Public IP address for which the reverse DNS entry should be set

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"dns_ptr":"lb1.example.com","ip":"1.2.3.4"}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/change_dns_ptr"

Request

1{
2  "dns_ptr": "lb1.example.com",
3  "ip": "1.2.3.4"
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_dns_ptr",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Change Load Balancer Protection

Changes the protection configuration of a Load Balancer.

HTTP Request

POST /load_balancers/{id}/actions/change_protection

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • deleteboolean

    If true, prevents the Load Balancer from being deleted

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"delete":true}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/change_protection"

Request

1{
2  "delete": true
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_protection",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Change the Type of a Load Balancer

Changes the type (Max Services, Max Targets and Max Connections) of a Load Balancer.

Call specific error codes

Code Description
invalid_load_balancer_type The Load Balancer type does not fit for the given Load Balancer

HTTP Request

POST /load_balancers/{id}/actions/change_type

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • load_balancer_typestring required

    ID or name of Load Balancer type the Load Balancer should migrate to

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"load_balancer_type":"lb21"}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/change_type"

Request

1{
2  "load_balancer_type": "lb21"
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_load_balancer_type",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Delete Service

Delete a service of a Load Balancer.

HTTP Request

POST /load_balancers/{id}/actions/delete_service

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • listen_portinteger required

    The listen port of the service you want to delete

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"listen_port":443}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/delete_service"

Request

1{
2  "listen_port": 443
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "delete_service",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Detach a Load Balancer from a Network

Detaches a Load Balancer from a network.

HTTP Request

POST /load_balancers/{id}/actions/detach_from_network

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • networkinteger (int64) required

    ID of an existing network to detach the Load Balancer from

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"network":4711}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/detach_from_network"

Request

1{
2  "network": 4711
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "detach_from_network",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "network"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  }
24}

Disable the public interface of a Load Balancer

Disable the public interface of a Load Balancer. The Load Balancer will be not accessible from the internet via its public IPs.

Call specific error codes

Code Description
load_balancer_not_attached_to_network The Load Balancer is not attached to a network
targets_without_use_private_ip The Load Balancer has targets that use the public IP instead of the private IP

HTTP Request

POST /load_balancers/{id}/actions/disable_public_interface

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/disable_public_interface"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "disable_public_interface",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "network"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  }
24}

Enable the public interface of a Load Balancer

Enable the public interface of a Load Balancer. The Load Balancer will be accessible from the internet via its public IPs.

HTTP Request

POST /load_balancers/{id}/actions/enable_public_interface

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/enable_public_interface"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "enable_public_interface",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "network"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  }
24}

Remove Target

Removes a target from a Load Balancer.

HTTP Request

POST /load_balancers/{id}/actions/remove_target

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • typestring required
    Allowed: server label_selector ip

    Type of the resource

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"ip":{"ip":"203.0.113.1"},"label_selector":{"selector":"env=prod"},"server":{"id":80},"type":"server"}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/remove_target"

Request

1{
2  "ip": {
3    "ip": "203.0.113.1"
4  },
5  "label_selector": {
6    "selector": "env=prod"
7  },
8  "server": {
9    "id": 80
10  },
11  "type": "server"
12}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "remove_target",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Update Service

Updates a Load Balancer Service.

Call specific error codes

Code Description
source_port_already_used The source port you are trying to add is already in use

HTTP Request

POST /load_balancers/{id}/actions/update_service

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

Request

  • destination_portinteger

    Port the Load Balancer will balance to

  • listen_portinteger required

    Port the Load Balancer listens on

  • protocolstring
    Allowed: tcp http https

    Protocol of the Load Balancer

  • proxyprotocolboolean

    Is Proxyprotocol enabled or not

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"destination_port":80,"health_check":{"http":{"domain":"example.com","path":"/","response":"{\"status\": \"ok\"}","status_codes":["2??","3??"],"tls":false},"interval":15,"port":4711,"protocol":"http","retries":3,"timeout":10},"http":{"certificates":[897],"cookie_lifetime":300,"cookie_name":"HCLBSTICKY","redirect_http":true,"sticky_sessions":true},"listen_port":443,"protocol":"https","proxyprotocol":false}' \
6	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/update_service"

Request

1{
2  "destination_port": 80,
3  "health_check": {
4    "http": {
5      "domain": "example.com",
6      "path": "/",
7      "response": "{\"status\": \"ok\"}",
8      "status_codes": [
9        "2??",
10        "3??"
11      ],
12      "tls": false
13    },
14    "interval": 15,
15    "port": 4711,
16    "protocol": "http",
17    "retries": 3,
18    "timeout": 10
19  },
20  "http": {
21    "certificates": [
22      897
23    ],
24    "cookie_lifetime": 300,
25    "cookie_name": "HCLBSTICKY",
26    "redirect_http": true,
27    "sticky_sessions": true
28  },
29  "listen_port": 443,
30  "protocol": "https",
31  "proxyprotocol": false
32}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "update_service",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get an Action for a Load Balancer

Returns a specific Action for a Load Balancer.

HTTP Request

GET /load_balancers/{id}/actions/{action_id}

Path Parameters

  • idinteger (int64) required

    ID of the Load Balancer

  • action_idinteger (int64) required

    ID of the Action

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/load_balancers/$ID/actions/$ACTION_ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "change_protection",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "load_balancer"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Load Balancer Types

Load Balancer types define kinds of Load Balancers offered. Each type has an hourly and a monthly cost. You will pay whichever amount is lower for your usage of this specific Load Balancer. Costs may differ between Locations.

Currency for all amounts is €. All prices exclude VAT.

Get all Load Balancer Types

Gets all Load Balancer type objects.

HTTP Request

GET /load_balancer_types

Query Parameters

  • namestring

    Can be used to filter Load Balancer types by their name. The response will only contain the Load Balancer type matching the specified name.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/load_balancer_types"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "load_balancer_types": [
3    {
4      "deprecated": "2016-01-30T23:50:00+00:00",
5      "description": "LB11",
6      "id": 1,
7      "max_assigned_certificates": 10,
8      "max_connections": 20000,
9      "max_services": 5,
10      "max_targets": 25,
11      "name": "lb11",
12      "prices": [
13        {
14          "location": "fsn1",
15          "price_hourly": {
16            "gross": "1.1900000000000000",
17            "net": "1.0000000000"
18          },
19          "price_monthly": {
20            "gross": "1.1900000000000000",
21            "net": "1.0000000000"
22          }
23        }
24      ]
25    }
26  ]
27}

Get a Load Balancer Type

Gets a specific Load Balancer type object.

HTTP Request

GET /load_balancer_types/{id}

Path Parameters

  • idinteger required

    ID of Load Balancer type

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/load_balancer_types/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "load_balancer_type": {
3    "deprecated": "2016-01-30T23:50:00+00:00",
4    "description": "LB11",
5    "id": 1,
6    "max_assigned_certificates": 10,
7    "max_connections": 20000,
8    "max_services": 5,
9    "max_targets": 25,
10    "name": "lb11",
11    "prices": [
12      {
13        "location": "fsn1",
14        "price_hourly": {
15          "gross": "1.1900000000000000",
16          "net": "1.0000000000"
17        },
18        "price_monthly": {
19          "gross": "1.1900000000000000",
20          "net": "1.0000000000"
21        }
22      }
23    ]
24  }
25}

Locations

Datacenters are organized by Locations. Datacenters in the same Location are connected with very low latency links.

Get all Locations

Returns all Location objects.

HTTP Request

GET /locations

Query Parameters

  • namestring

    Can be used to filter Locations by their name. The response will only contain the Location matching the specified name.

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc

    Can be used multiple times.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/locations"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "locations": [
3    {
4      "city": "Falkenstein",
5      "country": "DE",
6      "description": "Falkenstein DC Park 1",
7      "id": 1,
8      "latitude": 50.47612,
9      "longitude": 12.370071,
10      "name": "fsn1",
11      "network_zone": "eu-central"
12    }
13  ],
14  "meta": {
15    "pagination": {
16      "last_page": 4,
17      "next_page": 4,
18      "page": 3,
19      "per_page": 25,
20      "previous_page": 2,
21      "total_entries": 100
22    }
23  }
24}

Get a Location

Returns a specific Location object.

HTTP Request

GET /locations/{id}

Path Parameters

  • idinteger (int64) required

    ID of Location

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/locations/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "location": {
3    "city": "Falkenstein",
4    "country": "DE",
5    "description": "Falkenstein DC Park 1",
6    "id": 1,
7    "latitude": 50.47612,
8    "longitude": 12.370071,
9    "name": "fsn1",
10    "network_zone": "eu-central"
11  }
12}

Networks

Networks is a private networks feature. These Networks are optional and they coexist with the public network that every Server has by default.

They allow Servers to talk to each other over a dedicated network interface using private IP addresses not available publicly.

The IP addresses are allocated and managed via the API, they must conform to RFC1918 standard. IPs and network interfaces defined under Networks do not provide public internet connectivity, you will need to use the already existing public network interface for that.

Each network has a user selected ip_range which defines all available IP addresses which can be used for Subnets within the Network.

To assign individual IPs to Servers you will need to create Network Subnets, described below.

Currently Networks support IPv4 only.

Subnets

Subnets divide the ip_range from the parent Network object into multiple Subnetworks that you can use for different specific purposes.

For each subnet you need to specify its own ip_range which must be contained within the parent Network’s ip_range. Additionally each subnet must belong to one of the available Network Zones described below. Subnets can not have overlapping IP ranges.

Currently there are three types of subnet:

  • type cloud is used to connect cloud Resources into your Network.
  • type server was used to connect only cloud Servers into your Network. This type is deprecated and is replaced by type cloud.
  • type vswitch allows you to connect Dedicated Server vSwitch - and all Dedicated Servers attached to it - into your Network

Subnets of type vswitch must set a vswitch_id which is the ID of the existing vSwitch in Hetzner Robot that should be coupled.

Network Zones

Network Zones are groups of Locations which have special high-speed network connections between them. The Location object contains the network_zone property each Location belongs to. Currently these network zones exist:

Network Zone Contains Locations
eu-central nbg1, fsn1, hel1
us-east ash
us-west hil

IP address management

When a cloud Server is attached to a network without the user specifying an IP it automatically gets an IP address assigned from a subnet of type server in the same network zone. If you specify the optional ip parameter when attaching then we will try to assign that IP. Keep in mind that the Server’s location must be covered by the Subnet’s Network Zone if you specify an IP, or that at least one Subnet with the zone covering Server’s location must exist.

A cloud Server can also have more than one IP address in a Network by specifying aliases. For details see the attach to network action.

The following IP addresses are reserved in networks and can not be used:

  • the first IP of the network ip_range as it will be used as a default gateway for the private Network interface.
  • 172.31.1.1 as it is being used as default gateway for our public Network interfaces.

Coupling Dedicated Servers

By using subnets of type vswitch you can couple the Cloud Networks with an existing Dedicated Server vSwitch and enable dedicated and cloud servers to talk to each other over the Network. In order for this to work the dedicated servers may only use IPs from the subnet and must have a special network configuration. Please refer to FAQ. vSwitch Layer 2 features are not supported.

Routes

Networks also support the notion of routes which are automatically applied to private traffic. A route makes sure that all packets for a given destination IP prefix will be sent to the address specified in its gateway.

Get all Networks

Gets all existing networks that you have available.

HTTP Request

GET /networks

Query Parameters

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/networks"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "meta": {
3    "pagination": {
4      "last_page": 4,
5      "next_page": 4,
6      "page": 3,
7      "per_page": 25,
8      "previous_page": 2,
9      "total_entries": 100
10    }
11  },
12  "networks": [
13    {
14      "created": "2016-01-30T23:50:00+00:00",
15      "expose_routes_to_vswitch": false,
16      "id": 4711,
17      "ip_range": "10.0.0.0/16",
18      "labels": {},
19      "load_balancers": [
20        42
21      ],
22      "name": "mynet",
23      "protection": {
24        "delete": false
25      },
26      "routes": [
27        {
28          "destination": "10.100.1.0/24",
29          "gateway": "10.0.1.1"
30        }
31      ],
32      "servers": [
33        42
34      ],
35      "subnets": [
36        {
37          "gateway": "10.0.0.1",
38          "ip_range": "10.0.1.0/24",
39          "network_zone": "eu-central",
40          "type": "cloud",
41          "vswitch_id": 1000
42        }
43      ]
44    }
45  ]
46}

Create a Network

Creates a network with the specified ip_range .

You may specify one or more subnets . You can also add more Subnets later by using the add subnet action. If you do not specify an ip_range in the subnet we will automatically pick the first available /24 range for you.

You may specify one or more routes in routes . You can also add more routes later by using the add route action.

HTTP Request

POST /networks

Request

  • expose_routes_to_vswitchboolean

    Indicates if the routes from this network should be exposed to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.

  • ip_rangestring required

    IP range of the whole network which must span all included subnets. Must be one of the private IPv4 ranges of RFC1918. Minimum network size is /24. We highly recommend that you pick a larger network with a /16 netmask.

  • namestring required

    Name of the network

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"expose_routes_to_vswitch":false,"ip_range":"10.0.0.0/16","labels":{"labelkey":"value"},"name":"mynet","routes":[{"destination":"10.100.1.0/24","gateway":"10.0.1.1"}],"subnets":[{"ip_range":"10.0.1.0/24","network_zone":"eu-central","type":"cloud","vswitch_id":1000}]}' \
6	"https://api.hetzner.cloud/v1/networks"

Request

1{
2  "expose_routes_to_vswitch": false,
3  "ip_range": "10.0.0.0/16",
4  "labels": {
5    "labelkey": "value"
6  },
7  "name": "mynet",
8  "routes": [
9    {
10      "destination": "10.100.1.0/24",
11      "gateway": "10.0.1.1"
12    }
13  ],
14  "subnets": [
15    {
16      "ip_range": "10.0.1.0/24",
17      "network_zone": "eu-central",
18      "type": "cloud",
19      "vswitch_id": 1000
20    }
21  ]
22}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "network": {
3    "created": "2016-01-30T23:50:00+00:00",
4    "expose_routes_to_vswitch": false,
5    "id": 4711,
6    "ip_range": "10.0.0.0/16",
7    "labels": {},
8    "load_balancers": [
9      42
10    ],
11    "name": "mynet",
12    "protection": {
13      "delete": false
14    },
15    "routes": [
16      {
17        "destination": "10.100.1.0/24",
18        "gateway": "10.0.1.1"
19      }
20    ],
21    "servers": [
22      42
23    ],
24    "subnets": [
25      {
26        "gateway": "10.0.0.1",
27        "ip_range": "10.0.1.0/24",
28        "network_zone": "eu-central",
29        "type": "cloud",
30        "vswitch_id": 1000
31      }
32    ]
33  }
34}

Delete a Network

Deletes a network. If there are Servers attached they will be detached in the background.

Note: if the network object changes during the request, the response will be a “conflict” error.

HTTP Request

DELETE /networks/{id}

Path Parameters

  • idinteger (int64) required

    ID of the network

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/networks/$ID"

Response headers

1Status: 204

Get a Network

Gets a specific network object.

HTTP Request

GET /networks/{id}

Path Parameters

  • idinteger (int64) required

    ID of the network

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/networks/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "network": {
3    "created": "2016-01-30T23:50:00+00:00",
4    "expose_routes_to_vswitch": false,
5    "id": 4711,
6    "ip_range": "10.0.0.0/16",
7    "labels": {},
8    "load_balancers": [
9      42
10    ],
11    "name": "mynet",
12    "protection": {
13      "delete": false
14    },
15    "routes": [
16      {
17        "destination": "10.100.1.0/24",
18        "gateway": "10.0.1.1"
19      }
20    ],
21    "servers": [
22      42
23    ],
24    "subnets": [
25      {
26        "gateway": "10.0.0.1",
27        "ip_range": "10.0.1.0/24",
28        "network_zone": "eu-central",
29        "type": "cloud",
30        "vswitch_id": 1000
31      }
32    ]
33  }
34}

Update a Network

Updates the network properties.

Note that when updating labels, the network’s current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

Note: if the network object changes during the request, the response will be a “conflict” error.

HTTP Request

PUT /networks/{id}

Path Parameters

  • idinteger (int64) required

    ID of the network

Request

  • expose_routes_to_vswitchboolean

    Indicates if the routes from this network should be exposed to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.

  • namestring

    New network name

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"expose_routes_to_vswitch":false,"labels":{"labelkey":"value"},"name":"new-name"}' \
6	"https://api.hetzner.cloud/v1/networks/$ID"

Request

1{
2  "expose_routes_to_vswitch": false,
3  "labels": {
4    "labelkey": "value"
5  },
6  "name": "new-name"
7}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "network": {
3    "created": "2016-01-30T23:50:00+00:00",
4    "expose_routes_to_vswitch": true,
5    "id": 4711,
6    "ip_range": "10.0.0.0/16",
7    "labels": {
8      "labelkey": "value"
9    },
10    "load_balancers": [
11      42
12    ],
13    "name": "new-name",
14    "protection": {
15      "delete": false
16    },
17    "routes": [
18      {
19        "destination": "10.100.1.0/24",
20        "gateway": "10.0.1.1"
21      }
22    ],
23    "servers": [
24      42
25    ],
26    "subnets": [
27      {
28        "gateway": "10.0.0.1",
29        "ip_range": "10.0.1.0/24",
30        "network_zone": "eu-central",
31        "type": "cloud"
32      }
33    ]
34  }
35}

Network Actions

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status and id parameter.

HTTP Request

GET /networks/actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/networks/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /networks/actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Action.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/networks/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get all Actions for a Network

Returns all Action objects for a Network. You can sort the results by using the sort URI parameter, and filter them with the status parameter.

HTTP Request

GET /networks/{id}/actions

Path Parameters

  • idinteger (int64) required

    ID of the Network

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/networks/$ID/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "add_subnet",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 13,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ]
22}

Add a route to a Network

Adds a route entry to a Network.

Note: if the Network object changes during the request, the response will be a “conflict” error.

HTTP Request

POST /networks/{id}/actions/add_route

Path Parameters

  • idinteger (int64) required

    ID of the Network

Request

  • destinationstring required

    Destination network or host of this route. Must not overlap with an existing ip_range in any subnets or with any destinations in other routes or with the first IP of the networks ip_range or with 172.31.1.1. Must be one of the private IPv4 ranges of RFC1918.

  • gatewaystring required

    Gateway for the route. Cannot be the first IP of the networks ip_range, an IP behind a vSwitch or 172.31.1.1, as this IP is being used as a gateway for the public network interface of Servers.

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"destination":"10.100.1.0/24","gateway":"10.0.1.1"}' \
6	"https://api.hetzner.cloud/v1/networks/$ID/actions/add_route"

Request

1{
2  "destination": "10.100.1.0/24",
3  "gateway": "10.0.1.1"
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "add_route",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "network"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Add a subnet to a Network

Adds a new subnet object to the Network. If you do not specify an ip_range for the subnet we will automatically pick the first available /24 range for you if possible.

Note: if the parent Network object changes during the request, the response will be a “conflict” error.

HTTP Request

POST /networks/{id}/actions/add_subnet

Path Parameters

  • idinteger (int64) required

    ID of the Network

Request

  • ip_rangestring

    Range to allocate IPs from. Must be a Subnet of the ip_range of the parent network object and must not overlap with any other subnets or with any destinations in routes. If the Subnet is of type vSwitch, it also can not overlap with any gateway in routes. Minimum Network size is /30. We suggest that you pick a bigger Network with a /24 netmask.

  • network_zonestring required

    Name of Network zone. The Location object contains the network_zone property each Location belongs to.

  • typestring required
    Allowed: cloud server vswitch

    Type of Subnetwork

  • vswitch_idinteger (int64)

    ID of the robot vSwitch. Must be supplied if the subnet is of type vswitch.

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"ip_range":"10.0.1.0/24","network_zone":"eu-central","type":"cloud","vswitch_id":1000}' \
6	"https://api.hetzner.cloud/v1/networks/$ID/actions/add_subnet"

Request

1{
2  "ip_range": "10.0.1.0/24",
3  "network_zone": "eu-central",
4  "type": "cloud",
5  "vswitch_id": 1000
6}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "add_subnet",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "network"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Change IP range of a Network

Changes the IP range of a Network. IP ranges can only be extended and never shrunk. You can only add IPs at the end of an existing IP range. This means that the IP part of your existing range must stay the same and you can only change its netmask.

For example if you have a range 10.0.0.0/16 you want to extend then your new range must also start with the IP 10.0.0.0 . Your CIDR netmask /16 may change to a number that is smaller than 16 thereby increasing the IP range. So valid entries would be 10.0.0.0/15 , 10.0.0.0/14 , 10.0.0.0/13 and so on.

After changing the IP range you will have to adjust the routes on your connected Servers by either rebooting them or manually changing the routes to your private Network interface.

Note: if the Network object changes during the request, the response will be a “conflict” error.

HTTP Request

POST /networks/{id}/actions/change_ip_range

Path Parameters

  • idinteger (int64) required

    ID of the Network

Request

  • ip_rangestring required

    The new prefix for the whole Network

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"ip_range":"10.0.0.0/12"}' \
6	"https://api.hetzner.cloud/v1/networks/$ID/actions/change_ip_range"

Request

1{
2  "ip_range": "10.0.0.0/12"
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_ip_range",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "network"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Change Network Protection

Changes the protection configuration of a Network.

Note: if the Network object changes during the request, the response will be a “conflict” error.

HTTP Request

POST /networks/{id}/actions/change_protection

Path Parameters

  • idinteger (int64) required

    ID of the Network

Request

  • deleteboolean

    If true, prevents the Network from being deleted

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"delete":true}' \
6	"https://api.hetzner.cloud/v1/networks/$ID/actions/change_protection"

Request

1{
2  "delete": true
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_protection",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "network"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Delete a route from a Network

Delete a route entry from a Network.

Note: if the Network object changes during the request, the response will be a “conflict” error.

HTTP Request

POST /networks/{id}/actions/delete_route

Path Parameters

  • idinteger (int64) required

    ID of the Network

Request

  • destinationstring required

    Destination network or host of this route. Must not overlap with an existing ip_range in any subnets or with any destinations in other routes or with the first IP of the networks ip_range or with 172.31.1.1. Must be one of the private IPv4 ranges of RFC1918.

  • gatewaystring required

    Gateway for the route. Cannot be the first IP of the networks ip_range, an IP behind a vSwitch or 172.31.1.1, as this IP is being used as a gateway for the public network interface of Servers.

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"destination":"10.100.1.0/24","gateway":"10.0.1.1"}' \
6	"https://api.hetzner.cloud/v1/networks/$ID/actions/delete_route"

Request

1{
2  "destination": "10.100.1.0/24",
3  "gateway": "10.0.1.1"
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "delete_route",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "network"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Delete a subnet from a Network

Deletes a single subnet entry from a Network. You cannot delete subnets which still have Servers attached. If you have Servers attached you first need to detach all Servers that use IPs from this subnet before you can delete the subnet.

Note: if the Network object changes during the request, the response will be a “conflict” error.

HTTP Request

POST /networks/{id}/actions/delete_subnet

Path Parameters

  • idinteger (int64) required

    ID of the Network

Request

  • ip_rangestring required

    IP range of subnet to delete

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"ip_range":"10.0.1.0/24"}' \
6	"https://api.hetzner.cloud/v1/networks/$ID/actions/delete_subnet"

Request

1{
2  "ip_range": "10.0.1.0/24"
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "delete_subnet",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "network"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Get an Action for a Network

Returns a specific Action for a Network.

HTTP Request

GET /networks/{id}/actions/{action_id}

Path Parameters

  • idinteger (int64) required

    ID of the Network

  • action_idinteger (int64) required

    ID of the Action

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/networks/$ID/actions/$ACTION_ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "add_subnet",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "network"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Network Zones

A Network Zone is a group of one or more Locations, which have special high-speed network connections between them.

Placement Groups

Placement groups are used to influence the location of interdependent virtual servers in our data centers. The distribution of the different instances within a group is based on a pattern specified in the type. By enforcing certain rules on the placement of instances within our infrastructure, availability can be influenced in a way that fits your needs best.

In spread placement groups, all virtual servers will run on different physical servers. This decreases the probability that some instances might fail together.

Get all PlacementGroups

Returns all PlacementGroup objects.

HTTP Request

GET /placement_groups

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc created created:asc created:desc

    Sort resources by field and direction. Can be used multiple times. For more information, see "Sorting".

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • typestring
    Allowed: spread

    Can be used multiple times. The response will only contain PlacementGroups matching the type.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/placement_groups"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "placement_groups": [
3    {
4      "created": "2019-01-08T12:10:00+00:00",
5      "id": 897,
6      "labels": {
7        "key": "value"
8      },
9      "name": "my Placement Group",
10      "servers": [
11        4711,
12        4712
13      ],
14      "type": "spread"
15    }
16  ]
17}

Create a PlacementGroup

Creates a new PlacementGroup.

HTTP Request

POST /placement_groups

Request

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring required

    Name of the PlacementGroup

  • typestring required
    Allowed: spread

    Define the Placement Group Type.

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"name":"my Placement Group","type":"spread"}' \
6	"https://api.hetzner.cloud/v1/placement_groups"

Request

1{
2  "name": "my Placement Group",
3  "type": "spread"
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "placement_group": {
3    "created": "2019-01-08T12:10:00+00:00",
4    "id": 897,
5    "labels": {
6      "key": "value"
7    },
8    "name": "my Placement Group",
9    "servers": [],
10    "type": "spread"
11  }
12}

Delete a PlacementGroup

Deletes a PlacementGroup.

HTTP Request

DELETE /placement_groups/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/placement_groups/$ID"

Response headers

1Status: 204

Get a PlacementGroup

Gets a specific PlacementGroup object.

HTTP Request

GET /placement_groups/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/placement_groups/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "placement_group": {
3    "created": "2019-01-08T12:10:00+00:00",
4    "id": 897,
5    "labels": {
6      "key": "value"
7    },
8    "name": "my Placement Group",
9    "servers": [
10      4711,
11      4712
12    ],
13    "type": "spread"
14  }
15}

Update a PlacementGroup

Updates the PlacementGroup properties.

Note that when updating labels, the PlacementGroup’s current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

Note: if the PlacementGroup object changes during the request, the response will be a “conflict” error.

HTTP Request

PUT /placement_groups/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Request

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring

    New PlacementGroup name

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"labels":{"labelkey":"value"},"name":"my Placement Group"}' \
6	"https://api.hetzner.cloud/v1/placement_groups/$ID"

Request

1{
2  "labels": {
3    "labelkey": "value"
4  },
5  "name": "my Placement Group"
6}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "placement_group": {
3    "created": "2019-01-08T12:10:00+00:00",
4    "id": 897,
5    "labels": {
6      "key": "value"
7    },
8    "name": "my Placement Group",
9    "servers": [
10      4711,
11      4712
12    ],
13    "type": "spread"
14  }
15}

Pricing

Returns prices for resources.

Get all prices

Returns prices for all resources available on the platform. VAT and currency of the Project owner are used for calculations.

Both net and gross prices are included in the response.

HTTP Request

GET /pricing

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/pricing"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "pricing": {
3    "currency": "EUR",
4    "floating_ip": {
5      "price_monthly": {
6        "gross": "1.1900000000000000",
7        "net": "1.0000000000"
8      }
9    },
10    "floating_ips": [
11      {
12        "prices": [
13          {
14            "location": "fsn1",
15            "price_monthly": {
16              "gross": "1.1900000000000000",
17              "net": "1.0000000000"
18            }
19          }
20        ],
21        "type": "ipv4"
22      }
23    ],
24    "image": {
25      "price_per_gb_month": {
26        "gross": "1.1900000000000000",
27        "net": "1.0000000000"
28      }
29    },
30    "load_balancer_types": [
31      {
32        "id": 1,
33        "name": "lb11",
34        "prices": [
35          {
36            "location": "fsn1",
37            "price_hourly": {
38              "gross": "1.1900000000000000",
39              "net": "1.0000000000"
40            },
41            "price_monthly": {
42              "gross": "1.1900000000000000",
43              "net": "1.0000000000"
44            }
45          }
46        ]
47      }
48    ],
49    "primary_ips": [
50      {
51        "prices": [
52          {
53            "location": "fsn1",
54            "price_hourly": {
55              "gross": "1.1900000000000000",
56              "net": "1.0000000000"
57            },
58            "price_monthly": {
59              "gross": "1.1900000000000000",
60              "net": "1.0000000000"
61            }
62          }
63        ],
64        "type": "ipv4"
65      }
66    ],
67    "server_backup": {
68      "percentage": "20.0000000000"
69    },
70    "server_types": [
71      {
72        "id": 4,
73        "name": "cx11",
74        "prices": [
75          {
76            "location": "fsn1",
77            "price_hourly": {
78              "gross": "1.1900000000000000",
79              "net": "1.0000000000"
80            },
81            "price_monthly": {
82              "gross": "1.1900000000000000",
83              "net": "1.0000000000"
84            }
85          }
86        ]
87      }
88    ],
89    "traffic": {
90      "price_per_tb": {
91        "gross": "1.1900000000000000",
92        "net": "1.0000000000"
93      }
94    },
95    "vat_rate": "19.000000",
96    "volume": {
97      "price_per_gb_month": {
98        "gross": "1.1900000000000000",
99        "net": "1.0000000000"
100      }
101    }
102  }
103}

Primary IPs

Primary IPs help you to create more flexible networking setups. You can assign at most one Primary IP of type ipv4 and one of type ipv6 per Server. This Server then uses these IPs.

You can only unassign a Primary IP from a Server when it's powered off. This Primary IP can then be assigned to a different powered off Server, or you can keep it around for later use.

Primary IPs are bound to a specific Datacenter. You can not assign a Primary IP from one Datacenter to a Server in a different Datacenter. If you need this capability use Floating IPs instead.

If your Server's operating system supports cloud-init there is no further configuration needed to make Primary IPs work.

Primary IPs of type ipv4 use a single IPv4 address as their ip property. Primary IPs of type ipv6 use a /64 network such as fc00::/64 as their ip property. Any IP address within that network can be used on your host.

Primary IPs are billed on an hourly basis.

Get all Primary IPs

Returns all Primary IP objects.

HTTP Request

GET /primary_ips

Query Parameters

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • ipstring

    Can be used to filter resources by their ip. The response will only contain the resources matching the specified ip.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

  • sortstring
    Allowed: id id:asc id:desc created created:asc created:desc

    Can be used multiple times. Choices id id:asc id:desc created created:asc created:desc

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/primary_ips"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "meta": {
3    "pagination": {
4      "last_page": 4,
5      "next_page": 4,
6      "page": 3,
7      "per_page": 25,
8      "previous_page": 2,
9      "total_entries": 100
10    }
11  },
12  "primary_ips": [
13    {
14      "assignee_id": 17,
15      "assignee_type": "server",
16      "auto_delete": true,
17      "blocked": false,
18      "created": "2016-01-30T23:55:00+00:00",
19      "datacenter": {
20        "description": "Falkenstein DC Park 8",
21        "id": 42,
22        "location": {
23          "city": "Falkenstein",
24          "country": "DE",
25          "description": "Falkenstein DC Park 1",
26          "id": 1,
27          "latitude": 50.47612,
28          "longitude": 12.370071,
29          "name": "fsn1",
30          "network_zone": "eu-central"
31        },
32        "name": "fsn1-dc8",
33        "server_types": {
34          "available": [
35            1,
36            2,
37            3
38          ],
39          "available_for_migration": [
40            1,
41            2,
42            3
43          ],
44          "supported": [
45            1,
46            2,
47            3
48          ]
49        }
50      },
51      "dns_ptr": [
52        {
53          "dns_ptr": "server.example.com",
54          "ip": "131.232.99.1"
55        }
56      ],
57      "id": 42,
58      "ip": "131.232.99.1",
59      "labels": {
60        "environment": "prod",
61        "example.com/my": "label",
62        "just-a-key": ""
63      },
64      "name": "my-resource",
65      "protection": {
66        "delete": false
67      },
68      "type": "ipv4"
69    }
70  ]
71}

Create a Primary IP

Creates a new Primary IP, optionally assigned to a Server.

If you want to create a Primary IP that is not assigned to a Server, you need to provide the datacenter key instead of assignee_id . This can be either the ID or the name of the Datacenter this Primary IP shall be created in.

Note that a Primary IP can only be assigned to a Server in the same Datacenter later on.

Call specific error codes

Code Description
server_not_stopped The specified server is running, but needs to be powered off
server_has_ipv4 The server already has an ipv4 address
server_has_ipv6 The server already has an ipv6 address

HTTP Request

POST /primary_ips

Request

The type argument is required while datacenter and assignee_id are mutually exclusive.

  • assignee_idinteger (int64)

    ID of the resource the Primary IP should be assigned to. Omitted if it should not be assigned.

  • assignee_typestring required
    Allowed: server

    Resource type the Primary IP can be assigned to

  • auto_deleteboolean
    Default: false

    Delete the Primary IP when the Server it is assigned to is deleted.

  • datacenterstring

    ID or name of Datacenter the Primary IP will be bound to. Needs to be omitted if assignee_id is passed.

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring required
  • typestring required
    Allowed: ipv4 ipv6

    Primary IP type

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"assignee_id":17,"assignee_type":"server","auto_delete":false,"datacenter":"fsn1-dc8","labels":{"labelkey":"value"},"name":"my-ip","type":"ipv4"}' \
6	"https://api.hetzner.cloud/v1/primary_ips"

Request

1{
2  "assignee_id": 17,
3  "assignee_type": "server",
4  "auto_delete": false,
5  "datacenter": "fsn1-dc8",
6  "labels": {
7    "labelkey": "value"
8  },
9  "name": "my-ip",
10  "type": "ipv4"
11}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "create_primary_ip",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 17,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  },
20  "primary_ip": {
21    "assignee_id": 17,
22    "assignee_type": "server",
23    "auto_delete": true,
24    "blocked": false,
25    "created": "2016-01-30T23:50:00+00:00",
26    "datacenter": {
27      "description": "Falkenstein DC Park 8",
28      "id": 42,
29      "location": {
30        "city": "Falkenstein",
31        "country": "DE",
32        "description": "Falkenstein DC Park 1",
33        "id": 1,
34        "latitude": 50.47612,
35        "longitude": 12.370071,
36        "name": "fsn1",
37        "network_zone": "eu-central"
38      },
39      "name": "fsn1-dc8",
40      "server_types": {
41        "available": [
42          1,
43          2,
44          3
45        ],
46        "available_for_migration": [
47          1,
48          2,
49          3
50        ],
51        "supported": [
52          1,
53          2,
54          3
55        ]
56      }
57    },
58    "dns_ptr": [
59      {
60        "dns_ptr": "server.example.com",
61        "ip": "2001:db8::1"
62      }
63    ],
64    "id": 42,
65    "ip": "131.232.99.1",
66    "labels": {
67      "labelkey": "value"
68    },
69    "name": "my-ip",
70    "protection": {
71      "delete": false
72    },
73    "type": "ipv4"
74  }
75}

Delete a Primary IP

Deletes a Primary IP.

The Primary IP may be assigned to a Server. In this case it is unassigned automatically. The Server must be powered off (status off ) in order for this operation to succeed.

HTTP Request

DELETE /primary_ips/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/primary_ips/$ID"

Response headers

1Status: 204

Get a Primary IP

Returns a specific Primary IP object.

HTTP Request

GET /primary_ips/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/primary_ips/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "primary_ip": {
3    "assignee_id": 17,
4    "assignee_type": "server",
5    "auto_delete": true,
6    "blocked": false,
7    "created": "2016-01-30T23:55:00+00:00",
8    "datacenter": {
9      "description": "Falkenstein DC Park 8",
10      "id": 42,
11      "location": {
12        "city": "Falkenstein",
13        "country": "DE",
14        "description": "Falkenstein DC Park 1",
15        "id": 1,
16        "latitude": 50.47612,
17        "longitude": 12.370071,
18        "name": "fsn1",
19        "network_zone": "eu-central"
20      },
21      "name": "fsn1-dc8",
22      "server_types": {
23        "available": [
24          1,
25          2,
26          3
27        ],
28        "available_for_migration": [
29          1,
30          2,
31          3
32        ],
33        "supported": [
34          1,
35          2,
36          3
37        ]
38      }
39    },
40    "dns_ptr": [
41      {
42        "dns_ptr": "server.example.com",
43        "ip": "131.232.99.1"
44      }
45    ],
46    "id": 42,
47    "ip": "131.232.99.1",
48    "labels": {
49      "environment": "prod",
50      "example.com/my": "label",
51      "just-a-key": ""
52    },
53    "name": "my-resource",
54    "protection": {
55      "delete": false
56    },
57    "type": "ipv4"
58  }
59}

Update a Primary IP

Updates the Primary IP.

Note that when updating labels, the Primary IP's current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

If the Primary IP object changes during the request, the response will be a “conflict” error.

HTTP Request

PUT /primary_ips/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Request

  • auto_deleteboolean

    Delete this Primary IP when the resource it is assigned to is deleted

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring

    New unique name to set

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"auto_delete":true,"labels":{"labelkey":"value"},"name":"my-ip"}' \
6	"https://api.hetzner.cloud/v1/primary_ips/$ID"

Request

1{
2  "auto_delete": true,
3  "labels": {
4    "labelkey": "value"
5  },
6  "name": "my-ip"
7}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "primary_ip": {
3    "assignee_id": 17,
4    "assignee_type": "server",
5    "auto_delete": true,
6    "blocked": false,
7    "created": "2016-01-30T23:55:00+00:00",
8    "datacenter": {
9      "description": "Falkenstein DC Park 8",
10      "id": 42,
11      "location": {
12        "city": "Falkenstein",
13        "country": "DE",
14        "description": "Falkenstein DC Park 1",
15        "id": 1,
16        "latitude": 50.47612,
17        "longitude": 12.370071,
18        "name": "fsn1",
19        "network_zone": "eu-central"
20      },
21      "name": "fsn1-dc8",
22      "server_types": {
23        "available": [
24          1,
25          2,
26          3
27        ],
28        "available_for_migration": [
29          1,
30          2,
31          3
32        ],
33        "supported": [
34          1,
35          2,
36          3
37        ]
38      }
39    },
40    "dns_ptr": [
41      {
42        "dns_ptr": "server.example.com",
43        "ip": "131.232.99.1"
44      }
45    ],
46    "id": 42,
47    "ip": "131.232.99.1",
48    "labels": {
49      "environment": "prod",
50      "example.com/my": "label",
51      "just-a-key": ""
52    },
53    "name": "my-resource",
54    "protection": {
55      "delete": false
56    },
57    "type": "ipv4"
58  }
59}

Primary IP Actions

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status and id parameter.

HTTP Request

GET /primary_ips/actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/primary_ips/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /primary_ips/actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Action.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/primary_ips/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Assign a Primary IP to a resource

Assigns a Primary IP to a Server.

A Server can only have one Primary IP of type ipv4 and one of type ipv6 assigned. If you need more IPs use Floating IPs.

The Server must be powered off (status off ) in order for this operation to succeed.

Call specific error codes

Code Description
server_not_stopped The server is running, but needs to be powered off
primary_ip_already_assigned Primary ip is already assigned to a different server
server_has_ipv4 The server already has an ipv4 address
server_has_ipv6 The server already has an ipv6 address

HTTP Request

POST /primary_ips/{id}/actions/assign

Path Parameters

  • idinteger (int64) required

    ID of the Primary IP

Request

  • assignee_idinteger (int64) required

    ID of a resource of type assignee_type

  • assignee_typestring required
    Allowed: server

    Type of resource assigning the Primary IP to

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"assignee_id":4711,"assignee_type":"server"}' \
6	"https://api.hetzner.cloud/v1/primary_ips/$ID/actions/assign"

Request

1{
2  "assignee_id": 4711,
3  "assignee_type": "server"
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "assign_primary_ip",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "primary_ip"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  }
24}

Change reverse DNS entry for a Primary IP

Changes the hostname that will appear when getting the hostname belonging to this Primary IP.

HTTP Request

POST /primary_ips/{id}/actions/change_dns_ptr

Path Parameters

  • idinteger (int64) required

    ID of the Primary IP

Request

Select the IP address for which to change the DNS entry by passing ip . For a Primary IP of type ipv4 this must exactly match the IP address of the Primary IP. For a Primary IP of type ipv6 this must be a single IP within the IPv6 /64 range that belongs to this Primary IP. You can add up to 100 IPv6 reverse DNS entries.

The target hostname is set by passing dns_ptr .

  • dns_ptrstring – nullablerequired

    Hostname to set as a reverse DNS PTR entry, will reset to original default value if null

  • ipstring required

    IP address for which to set the reverse DNS entry

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"dns_ptr":"server02.example.com","ip":"1.2.3.4"}' \
6	"https://api.hetzner.cloud/v1/primary_ips/$ID/actions/change_dns_ptr"

Request

1{
2  "dns_ptr": "server02.example.com",
3  "ip": "1.2.3.4"
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_dns_ptr",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "primary_ip"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Change Primary IP Protection

Changes the protection configuration of a Primary IP.

A Primary IP can only be delete protected if its auto_delete property is set to false .

HTTP Request

POST /primary_ips/{id}/actions/change_protection

Path Parameters

  • idinteger (int64) required

    ID of the Primary IP

Request

  • deleteboolean

    If true, prevents the Primary IP from being deleted

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"delete":true}' \
6	"https://api.hetzner.cloud/v1/primary_ips/$ID/actions/change_protection"

Request

1{
2  "delete": true
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_protection",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 4711,
14        "type": "primary_ip"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Unassign a Primary IP from a resource

Unassigns a Primary IP from a Server.

The Server must be powered off (status off ) in order for this operation to succeed.

Note that only Servers that have at least one network interface (public or private) attached can be powered on.

Call specific error codes

Code Description
server_not_stopped The server is running, but needs to be powered off
server_is_load_balancer_target The server ipv4 address is a loadbalancer target

HTTP Request

POST /primary_ips/{id}/actions/unassign

Path Parameters

  • idinteger (int64) required

    ID of the Primary IP

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/primary_ips/$ID/actions/unassign"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "unassign_primary_ip",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "primary_ip"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  }
24}

Servers

Servers are virtual machines that can be provisioned.

Get all Servers

Returns all existing Server objects

HTTP Request

GET /servers

Query Parameters

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc created created:asc created:desc

    Sort resources by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: initializing starting running stopping off deleting rebuilding migrating unknown

    Can be used multiple times. The response will only contain Server matching the status

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/servers"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "meta": {
3    "pagination": {
4      "last_page": 4,
5      "next_page": 4,
6      "page": 3,
7      "per_page": 25,
8      "previous_page": 2,
9      "total_entries": 100
10    }
11  },
12  "servers": [
13    {
14      "backup_window": "22-02",
15      "created": "2016-01-30T23:55:00+00:00",
16      "datacenter": {
17        "description": "Falkenstein DC Park 8",
18        "id": 42,
19        "location": {
20          "city": "Falkenstein",
21          "country": "DE",
22          "description": "Falkenstein DC Park 1",
23          "id": 1,
24          "latitude": 50.47612,
25          "longitude": 12.370071,
26          "name": "fsn1",
27          "network_zone": "eu-central"
28        },
29        "name": "fsn1-dc8",
30        "server_types": {
31          "available": [
32            1,
33            2,
34            3
35          ],
36          "available_for_migration": [
37            1,
38            2,
39            3
40          ],
41          "supported": [
42            1,
43            2,
44            3
45          ]
46        }
47      },
48      "id": 42,
49      "image": {
50        "architecture": "x86",
51        "bound_to": null,
52        "created": "2016-01-30T23:55:00+00:00",
53        "created_from": {
54          "id": 1,
55          "name": "Server"
56        },
57        "deleted": null,
58        "deprecated": "2018-02-28T00:00:00+00:00",
59        "description": "Ubuntu 20.04 Standard 64 bit",
60        "disk_size": 10,
61        "id": 42,
62        "image_size": 2.3,
63        "labels": {
64          "environment": "prod",
65          "example.com/my": "label",
66          "just-a-key": ""
67        },
68        "name": "ubuntu-20.04",
69        "os_flavor": "ubuntu",
70        "os_version": "20.04",
71        "protection": {
72          "delete": false
73        },
74        "rapid_deploy": false,
75        "status": "available",
76        "type": "snapshot"
77      },
78      "included_traffic": 654321,
79      "ingoing_traffic": 123456,
80      "iso": {
81        "architecture": "x86",
82        "deprecation": {
83          "announced": "2023-06-01T00:00:00+00:00",
84          "unavailable_after": "2023-09-01T00:00:00+00:00"
85        },
86        "description": "FreeBSD 11.0 x64",
87        "id": 42,
88        "name": "FreeBSD-11.0-RELEASE-amd64-dvd1",
89        "type": "public"
90      },
91      "labels": {
92        "environment": "prod",
93        "example.com/my": "label",
94        "just-a-key": ""
95      },
96      "load_balancers": [],
97      "locked": false,
98      "name": "my-resource",
99      "outgoing_traffic": 123456,
100      "placement_group": {
101        "created": "2016-01-30T23:55:00+00:00",
102        "id": 42,
103        "labels": {
104          "environment": "prod",
105          "example.com/my": "label",
106          "just-a-key": ""
107        },
108        "name": "my-resource",
109        "servers": [
110          42
111        ],
112        "type": "spread"
113      },
114      "primary_disk_size": 50,
115      "private_net": [
116        {
117          "alias_ips": [],
118          "ip": "10.0.0.2",
119          "mac_address": "86:00:ff:2a:7d:e1",
120          "network": 4711
121        }
122      ],
123      "protection": {
124        "delete": false,
125        "rebuild": false
126      },
127      "public_net": {
128        "firewalls": [
129          {
130            "id": 42,
131            "status": "applied"
132          }
133        ],
134        "floating_ips": [
135          478
136        ],
137        "ipv4": {
138          "blocked": false,
139          "dns_ptr": "server01.example.com",
140          "id": 42,
141          "ip": "1.2.3.4"
142        },
143        "ipv6": {
144          "blocked": false,
145          "dns_ptr": [
146            {
147              "dns_ptr": "server.example.com",
148              "ip": "2001:db8::1"
149            }
150          ],
151          "id": 42,
152          "ip": "2001:db8::/64"
153        }
154      },
155      "rescue_enabled": false,
156      "server_type": {
157        "architecture": "x86",
158        "cores": 1,
159        "cpu_type": "shared",
160        "deprecated": false,
161        "deprecation": {
162          "announced": "2023-06-01T00:00:00+00:00",
163          "unavailable_after": "2023-09-01T00:00:00+00:00"
164        },
165        "description": "CX11",
166        "disk": 24,
167        "id": 1,
168        "included_traffic": 654321,
169        "memory": 1,
170        "name": "cx11",
171        "prices": [
172          {
173            "location": "fsn1",
174            "price_hourly": {
175              "gross": "1.1900000000000000",
176              "net": "1.0000000000"
177            },
178            "price_monthly": {
179              "gross": "1.1900000000000000",
180              "net": "1.0000000000"
181            }
182          }
183        ],
184        "storage_type": "local"
185      },
186      "status": "running",
187      "volumes": []
188    }
189  ]
190}

Create a Server

Creates a new Server. Returns preliminary information about the Server as well as an Action that covers progress of creation.

HTTP Request

POST /servers

Request

Please note that Server names must be unique per Project and valid hostnames as per RFC 1123 (i.e. may only contain letters, digits, periods, and dashes).

For server_type you can either use the ID as listed in /server_types or its name.

For image you can either use the ID as listed in /images or its name.

If you want to create the Server in a Location, you must set location to the ID or name as listed in /locations . This is the recommended way. You can be even more specific by setting datacenter to the ID or name as listed in /datacenters . However we only recommend this if you want to assign a specific Primary IP to the Server which is located in the specified Datacenter.

Some properties like start_after_create or automount will trigger Actions after the Server is created. Those Actions are listed in the next_actions field in the response.

For accessing your Server we strongly recommend to use SSH keys by passing the respective key IDs in ssh_keys . If you do not specify any ssh_keys we will generate a root password for you and return it in the response.

Please note that provided user-data is stored in our systems. While we take measures to protect it we highly recommend that you don’t use it to store passwords or other sensitive information.

Call specific error codes

Code Description
placement_error An error during the placement occurred
primary_ip_assigned The specified Primary IP is already assigned to a server
primary_ip_datacenter_mismatch The specified Primary IP is in a different datacenter
primary_ip_version_mismatch The specified Primary IP has the wrong IP Version
  • automountboolean

    Auto-mount Volumes after attach

  • datacenterstring

    ID or name of Datacenter to create Server in (must not be used together with location)

  • imagestring required

    ID or name of the Image the Server is created from

  • labelsobject

    User-defined labels (key-value pairs)

  • locationstring

    ID or name of Location to create Server in (must not be used together with datacenter)

  • namestring required

    Name of the Server to create (must be unique per Project and a valid hostname as per RFC 1123)

  • placement_groupinteger (int64)

    ID of the Placement Group the server should be in

  • server_typestring required

    ID or name of the Server type this Server should be created with

  • start_after_createboolean
    Default: true

    This automatically triggers a Power on a Server-Server Action after the creation is finished and is returned in the next_actions response object.

  • user_datastring

    Cloud-Init user data to use during Server creation. This field is limited to 32KiB.

Response

  • root_passwordstring – nullablerequired

    Root password when no SSH keys have been specified

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"automount":false,"datacenter":"nbg1-dc3","firewalls":[{"firewall":38}],"image":"ubuntu-20.04","labels":{},"location":"nbg1","name":"my-server","networks":[456],"placement_group":1,"public_net":{"enable_ipv4":false,"enable_ipv6":false,"ipv4":null,"ipv6":null},"server_type":"cx11","ssh_keys":["my-ssh-key"],"start_after_create":true,"user_data":"#cloud-config\nruncmd:\n- [touch, /root/cloud-init-worked]\n","volumes":[123]}' \
6	"https://api.hetzner.cloud/v1/servers"

Request

1{
2  "automount": false,
3  "datacenter": "nbg1-dc3",
4  "firewalls": [
5    {
6      "firewall": 38
7    }
8  ],
9  "image": "ubuntu-20.04",
10  "labels": {},
11  "location": "nbg1",
12  "name": "my-server",
13  "networks": [
14    456
15  ],
16  "placement_group": 1,
17  "public_net": {
18    "enable_ipv4": false,
19    "enable_ipv6": false,
20    "ipv4": null,
21    "ipv6": null
22  },
23  "server_type": "cx11",
24  "ssh_keys": [
25    "my-ssh-key"
26  ],
27  "start_after_create": true,
28  "user_data": "#cloud-config\nruncmd:\n- [touch, /root/cloud-init-worked]\n",
29  "volumes": [
30    123
31  ]
32}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "create_server",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 1,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  },
20  "next_actions": [
21    {
22      "command": "start_server",
23      "error": {
24        "code": "action_failed",
25        "message": "Action failed"
26      },
27      "finished": null,
28      "id": 13,
29      "progress": 0,
30      "resources": [
31        {
32          "id": 42,
33          "type": "server"
34        }
35      ],
36      "started": "2016-01-30T23:50:00+00:00",
37      "status": "running"
38    }
39  ],
40  "root_password": "YItygq1v3GYjjMomLaKc",
41  "server": {
42    "backup_window": "22-02",
43    "created": "2016-01-30T23:50:00+00:00",
44    "datacenter": {
45      "description": "Falkenstein 1 DC 8",
46      "id": 1,
47      "location": {
48        "city": "Falkenstein",
49        "country": "DE",
50        "description": "Falkenstein DC Park 1",
51        "id": 1,
52        "latitude": 50.47612,
53        "longitude": 12.370071,
54        "name": "fsn1",
55        "network_zone": "eu-central"
56      },
57      "name": "fsn1-dc8",
58      "server_types": {
59        "available": [
60          1,
61          2,
62          3
63        ],
64        "available_for_migration": [
65          1,
66          2,
67          3
68        ],
69        "supported": [
70          1,
71          2,
72          3
73        ]
74      }
75    },
76    "id": 42,
77    "image": {
78      "architecture": "x86",
79      "bound_to": null,
80      "created": "2016-01-30T23:50:00+00:00",
81      "created_from": {
82        "id": 1,
83        "name": "Server"
84      },
85      "deleted": null,
86      "deprecated": "2018-02-28T00:00:00+00:00",
87      "description": "Ubuntu 20.04 Standard 64 bit",
88      "disk_size": 10,
89      "id": 4711,
90      "image_size": 2.3,
91      "labels": {
92        "env": "dev"
93      },
94      "name": "ubuntu-20.04",
95      "os_flavor": "ubuntu",
96      "os_version": "20.04",
97      "protection": {
98        "delete": false
99      },
100      "rapid_deploy": false,
101      "status": "available",
102      "type": "snapshot"
103    },
104    "included_traffic": 654321,
105    "ingoing_traffic": 123456,
106    "iso": {
107      "architecture": "x86",
108      "deprecation": {
109        "announced": "2018-02-28T00:00:00+00:00",
110        "unavailable_after": "2018-05-31T00:00:00+00:00"
111      },
112      "description": "FreeBSD 11.0 x64",
113      "id": 4711,
114      "name": "FreeBSD-11.0-RELEASE-amd64-dvd1",
115      "type": "public"
116    },
117    "labels": {
118      "env": "dev"
119    },
120    "load_balancers": [],
121    "locked": false,
122    "name": "my-server",
123    "outgoing_traffic": 123456,
124    "primary_disk_size": 50,
125    "private_net": [
126      {
127        "alias_ips": [],
128        "ip": "10.0.0.2",
129        "mac_address": "86:00:ff:2a:7d:e1",
130        "network": 4711
131      }
132    ],
133    "protection": {
134      "delete": false,
135      "rebuild": false
136    },
137    "public_net": {
138      "firewalls": [
139        {
140          "id": 38,
141          "status": "applied"
142        }
143      ],
144      "floating_ips": [
145        478
146      ],
147      "ipv4": {
148        "blocked": false,
149        "dns_ptr": "server01.example.com",
150        "ip": "1.2.3.4"
151      },
152      "ipv6": {
153        "blocked": false,
154        "dns_ptr": [
155          {
156            "dns_ptr": "server.example.com",
157            "ip": "2001:db8::1"
158          }
159        ],
160        "ip": "2001:db8::/64"
161      }
162    },
163    "rescue_enabled": false,
164    "server_type": {
165      "architecture": "x86",
166      "cores": 1,
167      "cpu_type": "shared",
168      "deprecated": true,
169      "description": "CX11",
170      "disk": 25,
171      "id": 1,
172      "included_traffic": 21990232555520,
173      "memory": 1,
174      "name": "cx11",
175      "prices": [
176        {
177          "location": "fsn1",
178          "price_hourly": {
179            "gross": "1.1900000000000000",
180            "net": "1.0000000000"
181          },
182          "price_monthly": {
183            "gross": "1.1900000000000000",
184            "net": "1.0000000000"
185          }
186        }
187      ],
188      "storage_type": "local"
189    },
190    "status": "initializing",
191    "volumes": []
192  }
193}

Delete a Server

Deletes a Server. This immediately removes the Server from your account, and it is no longer accessible. Any resources attached to the server (like Volumes, Primary IPs, Floating IPs, Firewalls, Placement Groups) are detached while the server is deleted.

HTTP Request

DELETE /servers/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get a Server

Returns a specific Server object. The Server must exist inside the Project

HTTP Request

GET /servers/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/servers/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "server": {
3    "backup_window": "22-02",
4    "created": "2016-01-30T23:55:00+00:00",
5    "datacenter": {
6      "description": "Falkenstein DC Park 8",
7      "id": 42,
8      "location": {
9        "city": "Falkenstein",
10        "country": "DE",
11        "description": "Falkenstein DC Park 1",
12        "id": 1,
13        "latitude": 50.47612,
14        "longitude": 12.370071,
15        "name": "fsn1",
16        "network_zone": "eu-central"
17      },
18      "name": "fsn1-dc8",
19      "server_types": {
20        "available": [
21          1,
22          2,
23          3
24        ],
25        "available_for_migration": [
26          1,
27          2,
28          3
29        ],
30        "supported": [
31          1,
32          2,
33          3
34        ]
35      }
36    },
37    "id": 42,
38    "image": {
39      "architecture": "x86",
40      "bound_to": null,
41      "created": "2016-01-30T23:55:00+00:00",
42      "created_from": {
43        "id": 1,
44        "name": "Server"
45      },
46      "deleted": null,
47      "deprecated": "2018-02-28T00:00:00+00:00",
48      "description": "Ubuntu 20.04 Standard 64 bit",
49      "disk_size": 10,
50      "id": 42,
51      "image_size": 2.3,
52      "labels": {
53        "environment": "prod",
54        "example.com/my": "label",
55        "just-a-key": ""
56      },
57      "name": "ubuntu-20.04",
58      "os_flavor": "ubuntu",
59      "os_version": "20.04",
60      "protection": {
61        "delete": false
62      },
63      "rapid_deploy": false,
64      "status": "available",
65      "type": "snapshot"
66    },
67    "included_traffic": 654321,
68    "ingoing_traffic": 123456,
69    "iso": {
70      "architecture": "x86",
71      "deprecation": {
72        "announced": "2023-06-01T00:00:00+00:00",
73        "unavailable_after": "2023-09-01T00:00:00+00:00"
74      },
75      "description": "FreeBSD 11.0 x64",
76      "id": 42,
77      "name": "FreeBSD-11.0-RELEASE-amd64-dvd1",
78      "type": "public"
79    },
80    "labels": {
81      "environment": "prod",
82      "example.com/my": "label",
83      "just-a-key": ""
84    },
85    "load_balancers": [],
86    "locked": false,
87    "name": "my-resource",
88    "outgoing_traffic": 123456,
89    "placement_group": {
90      "created": "2016-01-30T23:55:00+00:00",
91      "id": 42,
92      "labels": {
93        "environment": "prod",
94        "example.com/my": "label",
95        "just-a-key": ""
96      },
97      "name": "my-resource",
98      "servers": [
99        42
100      ],
101      "type": "spread"
102    },
103    "primary_disk_size": 50,
104    "private_net": [
105      {
106        "alias_ips": [],
107        "ip": "10.0.0.2",
108        "mac_address": "86:00:ff:2a:7d:e1",
109        "network": 4711
110      }
111    ],
112    "protection": {
113      "delete": false,
114      "rebuild": false
115    },
116    "public_net": {
117      "firewalls": [
118        {
119          "id": 42,
120          "status": "applied"
121        }
122      ],
123      "floating_ips": [
124        478
125      ],
126      "ipv4": {
127        "blocked": false,
128        "dns_ptr": "server01.example.com",
129        "id": 42,
130        "ip": "1.2.3.4"
131      },
132      "ipv6": {
133        "blocked": false,
134        "dns_ptr": [
135          {
136            "dns_ptr": "server.example.com",
137            "ip": "2001:db8::1"
138          }
139        ],
140        "id": 42,
141        "ip": "2001:db8::/64"
142      }
143    },
144    "rescue_enabled": false,
145    "server_type": {
146      "architecture": "x86",
147      "cores": 1,
148      "cpu_type": "shared",
149      "deprecated": false,
150      "deprecation": {
151        "announced": "2023-06-01T00:00:00+00:00",
152        "unavailable_after": "2023-09-01T00:00:00+00:00"
153      },
154      "description": "CX11",
155      "disk": 24,
156      "id": 1,
157      "included_traffic": 654321,
158      "memory": 1,
159      "name": "cx11",
160      "prices": [
161        {
162          "location": "fsn1",
163          "price_hourly": {
164            "gross": "1.1900000000000000",
165            "net": "1.0000000000"
166          },
167          "price_monthly": {
168            "gross": "1.1900000000000000",
169            "net": "1.0000000000"
170          }
171        }
172      ],
173      "storage_type": "local"
174    },
175    "status": "running",
176    "volumes": []
177  }
178}

Update a Server

Updates a Server. You can update a Server’s name and a Server’s labels. Please note that Server names must be unique per Project and valid hostnames as per RFC 1123 (i.e. may only contain letters, digits, periods, and dashes). Also note that when updating labels, the Server’s current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

HTTP Request

PUT /servers/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring

    New name to set

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"labels":{"labelkey":"value"},"name":"my-server"}' \
6	"https://api.hetzner.cloud/v1/servers/$ID"

Request

1{
2  "labels": {
3    "labelkey": "value"
4  },
5  "name": "my-server"
6}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "server": {
3    "backup_window": "22-02",
4    "created": "2016-01-30T23:55:00+00:00",
5    "datacenter": {
6      "description": "Falkenstein DC Park 8",
7      "id": 42,
8      "location": {
9        "city": "Falkenstein",
10        "country": "DE",
11        "description": "Falkenstein DC Park 1",
12        "id": 1,
13        "latitude": 50.47612,
14        "longitude": 12.370071,
15        "name": "fsn1",
16        "network_zone": "eu-central"
17      },
18      "name": "fsn1-dc8",
19      "server_types": {
20        "available": [
21          1,
22          2,
23          3
24        ],
25        "available_for_migration": [
26          1,
27          2,
28          3
29        ],
30        "supported": [
31          1,
32          2,
33          3
34        ]
35      }
36    },
37    "id": 42,
38    "image": {
39      "architecture": "x86",
40      "bound_to": null,
41      "created": "2016-01-30T23:55:00+00:00",
42      "created_from": {
43        "id": 1,
44        "name": "Server"
45      },
46      "deleted": null,
47      "deprecated": "2018-02-28T00:00:00+00:00",
48      "description": "Ubuntu 20.04 Standard 64 bit",
49      "disk_size": 10,
50      "id": 42,
51      "image_size": 2.3,
52      "labels": {
53        "environment": "prod",
54        "example.com/my": "label",
55        "just-a-key": ""
56      },
57      "name": "ubuntu-20.04",
58      "os_flavor": "ubuntu",
59      "os_version": "20.04",
60      "protection": {
61        "delete": false
62      },
63      "rapid_deploy": false,
64      "status": "available",
65      "type": "snapshot"
66    },
67    "included_traffic": 654321,
68    "ingoing_traffic": 123456,
69    "iso": {
70      "architecture": "x86",
71      "deprecation": {
72        "announced": "2023-06-01T00:00:00+00:00",
73        "unavailable_after": "2023-09-01T00:00:00+00:00"
74      },
75      "description": "FreeBSD 11.0 x64",
76      "id": 42,
77      "name": "FreeBSD-11.0-RELEASE-amd64-dvd1",
78      "type": "public"
79    },
80    "labels": {
81      "environment": "prod",
82      "example.com/my": "label",
83      "just-a-key": ""
84    },
85    "load_balancers": [],
86    "locked": false,
87    "name": "my-resource",
88    "outgoing_traffic": 123456,
89    "placement_group": {
90      "created": "2016-01-30T23:55:00+00:00",
91      "id": 42,
92      "labels": {
93        "environment": "prod",
94        "example.com/my": "label",
95        "just-a-key": ""
96      },
97      "name": "my-resource",
98      "servers": [
99        42
100      ],
101      "type": "spread"
102    },
103    "primary_disk_size": 50,
104    "private_net": [
105      {
106        "alias_ips": [],
107        "ip": "10.0.0.2",
108        "mac_address": "86:00:ff:2a:7d:e1",
109        "network": 4711
110      }
111    ],
112    "protection": {
113      "delete": false,
114      "rebuild": false
115    },
116    "public_net": {
117      "firewalls": [
118        {
119          "id": 42,
120          "status": "applied"
121        }
122      ],
123      "floating_ips": [
124        478
125      ],
126      "ipv4": {
127        "blocked": false,
128        "dns_ptr": "server01.example.com",
129        "id": 42,
130        "ip": "1.2.3.4"
131      },
132      "ipv6": {
133        "blocked": false,
134        "dns_ptr": [
135          {
136            "dns_ptr": "server.example.com",
137            "ip": "2001:db8::1"
138          }
139        ],
140        "id": 42,
141        "ip": "2001:db8::/64"
142      }
143    },
144    "rescue_enabled": false,
145    "server_type": {
146      "architecture": "x86",
147      "cores": 1,
148      "cpu_type": "shared",
149      "deprecated": false,
150      "deprecation": {
151        "announced": "2023-06-01T00:00:00+00:00",
152        "unavailable_after": "2023-09-01T00:00:00+00:00"
153      },
154      "description": "CX11",
155      "disk": 24,
156      "id": 1,
157      "included_traffic": 654321,
158      "memory": 1,
159      "name": "cx11",
160      "prices": [
161        {
162          "location": "fsn1",
163          "price_hourly": {
164            "gross": "1.1900000000000000",
165            "net": "1.0000000000"
166          },
167          "price_monthly": {
168            "gross": "1.1900000000000000",
169            "net": "1.0000000000"
170          }
171        }
172      ],
173      "storage_type": "local"
174    },
175    "status": "running",
176    "volumes": []
177  }
178}

Get Metrics for a Server

Get Metrics for specified Server.

You must specify the type of metric to get: cpu, disk or network. You can also specify more than one type by comma separation, e.g. cpu,disk.

Depending on the type you will get different time series data

Type Timeseries Unit Description
cpu cpu percent Percent CPU usage
disk disk.0.iops.read iop/s Number of read IO operations per second
disk.0.iops.write iop/s Number of write IO operations per second
disk.0.bandwidth.read bytes/s Bytes read per second
disk.0.bandwidth.write bytes/s Bytes written per second
network network.0.pps.in packets/s Public Network interface packets per second received
network.0.pps.out packets/s Public Network interface packets per second sent
network.0.bandwidth.in bytes/s Public Network interface bytes/s received
network.0.bandwidth.out bytes/s Public Network interface bytes/s sent

Metrics are available for the last 30 days only.

If you do not provide the step argument we will automatically adjust it so that a maximum of 200 samples are returned.

We limit the number of samples returned to a maximum of 500 and will adjust the step parameter accordingly.

HTTP Request

GET /servers/{id}/metrics

Path Parameters

  • idinteger (int64) required

    ID of the Server

Query Parameters

  • typestring required
    Allowed: cpu disk network

    Type of metrics to get

  • startstring required

    Start of period to get Metrics for (in ISO-8601 format)

  • endstring required

    End of period to get Metrics for (in ISO-8601 format)

  • stepstring

    Resolution of results in seconds

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/servers/$ID/metrics?type=$TYPE&start=$START&end=$END"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "metrics": {
3    "end": "2017-01-01T23:00:00+00:00",
4    "start": "2017-01-01T00:00:00+00:00",
5    "step": 60,
6    "time_series": {
7      "name_of_timeseries": {
8        "values": [
9          [
10            1435781470.622,
11            "42"
12          ],
13          [
14            1435781471.622,
15            "43"
16          ]
17        ]
18      }
19    }
20  }
21}

Server Actions

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status and id parameter.

HTTP Request

GET /servers/actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/servers/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /servers/actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Action.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/servers/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get all Actions for a Server

Returns all Action objects for a Server. You can sort the results by using the sort URI parameter, and filter them with the status parameter.

HTTP Request

GET /servers/{id}/actions

Path Parameters

  • idinteger (int64) required

    ID of the Resource.

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/servers/$ID/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_server",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 13,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ]
22}

Add a Server to a Placement Group

Adds a Server to a Placement Group.

Server must be powered off for this command to succeed.

Call specific error codes

Code Description
server_not_stopped The action requires a stopped server

HTTP Request

POST /servers/{id}/actions/add_to_placement_group

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • placement_groupinteger (int64) required

    ID of Placement Group the Server should be added to

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"placement_group":1}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/add_to_placement_group"

Request

1{
2  "placement_group": 1
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "add_to_placement_group",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Attach an ISO to a Server

Attaches an ISO to a Server. The Server will immediately see it as a new disk. An already attached ISO will automatically be detached before the new ISO is attached.

Servers with attached ISOs have a modified boot order: They will try to boot from the ISO first before falling back to hard disk.

HTTP Request

POST /servers/{id}/actions/attach_iso

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • isostring required

    ID or name of ISO to attach to the Server as listed in GET /isos

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"iso":"FreeBSD-11.0-RELEASE-amd64-dvd1"}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/attach_iso"

Request

1{
2  "iso": "FreeBSD-11.0-RELEASE-amd64-dvd1"
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "attach_iso",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Attach a Server to a Network

Attaches a Server to a network. This will complement the fixed public Server interface by adding an additional ethernet interface to the Server which is connected to the specified network.

The Server will get an IP auto assigned from a subnet of type server in the same network_zone .

Using the alias_ips attribute you can also define one or more additional IPs to the Servers. Please note that you will have to configure these IPs by hand on your Server since only the primary IP will be given out by DHCP.

Call specific error codes

Code Description
server_already_attached The server is already attached to the network
ip_not_available The provided Network IP is not available
no_subnet_available No Subnet or IP is available for the Server within the network
networks_overlap The network IP range overlaps with one of the server networks

HTTP Request

POST /servers/{id}/actions/attach_to_network

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • ipstring

    IP to request to be assigned to this Server; if you do not provide this then you will be auto assigned an IP address

  • networkinteger (int64) required

    ID of an existing network to attach the Server to

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"alias_ips":["10.0.1.2"],"ip":"10.0.1.1","network":4711}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/attach_to_network"

Request

1{
2  "alias_ips": [
3    "10.0.1.2"
4  ],
5  "ip": "10.0.1.1",
6  "network": 4711
7}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "attach_to_network",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "network"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  }
24}

Change alias IPs of a Network

Changes the alias IPs of an already attached Network. Note that the existing aliases for the specified Network will be replaced with these provided in the request body. So if you want to add an alias IP, you have to provide the existing ones from the Network plus the new alias IP in the request body.

HTTP Request

POST /servers/{id}/actions/change_alias_ips

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • networkinteger (int64) required

    ID of an existing Network already attached to the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"alias_ips":["10.0.1.2"],"network":4711}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/change_alias_ips"

Request

1{
2  "alias_ips": [
3    "10.0.1.2"
4  ],
5  "network": 4711
6}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_alias_ips",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "network"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  }
24}

Change reverse DNS entry for this Server

Changes the hostname that will appear when getting the hostname belonging to the primary IPs (IPv4 and IPv6) of this Server.

Floating IPs assigned to the Server are not affected by this.

HTTP Request

POST /servers/{id}/actions/change_dns_ptr

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

Select the IP address for which to change the DNS entry by passing ip . It can be either IPv4 or IPv6. The target hostname is set by passing dns_ptr .

  • dns_ptrstring – nullablerequired

    Hostname to set as a reverse DNS PTR entry, reset to original value if null

  • ipstring required

    Primary IP address for which the reverse DNS entry should be set

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"dns_ptr":"server01.example.com","ip":"1.2.3.4"}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/change_dns_ptr"

Request

1{
2  "dns_ptr": "server01.example.com",
3  "ip": "1.2.3.4"
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_dns_ptr",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Change Server Protection

Changes the protection configuration of the Server.

HTTP Request

POST /servers/{id}/actions/change_protection

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • deleteboolean

    If true, prevents the Server from being deleted (currently delete and rebuild attribute needs to have the same value)

  • rebuildboolean

    If true, prevents the Server from being rebuilt (currently delete and rebuild attribute needs to have the same value)

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"delete":true,"rebuild":true}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/change_protection"

Request

1{
2  "delete": true,
3  "rebuild": true
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_protection",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Change the Type of a Server

Changes the type (Cores, RAM and disk sizes) of a Server.

Server must be powered off for this command to succeed.

This copies the content of its disk, and starts it again.

You can only migrate to Server types with the same storage_type and equal or bigger disks. Shrinking disks is not possible as it might destroy data.

If the disk gets upgraded, the Server type can not be downgraded any more. If you plan to downgrade the Server type, set upgrade_disk to false .

Call specific error codes

Code Description
invalid_server_type The server type does not fit for the given server or is deprecated
server_not_stopped The action requires a stopped server

HTTP Request

POST /servers/{id}/actions/change_type

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • server_typestring required

    ID or name of Server type the Server should migrate to

  • upgrade_diskboolean required

    If false, do not upgrade the disk (this allows downgrading the Server type later)

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"server_type":"cx11","upgrade_disk":true}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/change_type"

Request

1{
2  "server_type": "cx11",
3  "upgrade_disk": true
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_server_type",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Create Image from a Server

Creates an Image (snapshot) from a Server by copying the contents of its disks. This creates a snapshot of the current state of the disk and copies it into an Image. If the Server is currently running you must make sure that its disk content is consistent. Otherwise, the created Image may not be readable.

To make sure disk content is consistent, we recommend to shut down the Server prior to creating an Image.

You can either create a backup Image that is bound to the Server and therefore will be deleted when the Server is deleted, or you can create a snapshot Image which is completely independent of the Server it was created from and will survive Server deletion. Backup Images are only available when the backup option is enabled for the Server. Snapshot Images are billed on a per GB basis.

HTTP Request

POST /servers/{id}/actions/create_image

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • descriptionstring

    Description of the Image, will be auto-generated if not set

  • typestring
    Allowed: snapshot backupDefault: snapshot

    Type of Image to create.

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"description":"my image","labels":{"labelkey":"value"},"type":"snapshot"}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/create_image"

Request

1{
2  "description": "my image",
3  "labels": {
4    "labelkey": "value"
5  },
6  "type": "snapshot"
7}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "create_image",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  },
20  "image": {
21    "architecture": "x86",
22    "bound_to": null,
23    "created": "2016-01-30T23:50:00+00:00",
24    "created_from": {
25      "id": 1,
26      "name": "Server"
27    },
28    "deleted": null,
29    "deprecated": "2018-02-28T00:00:00+00:00",
30    "description": "my image",
31    "disk_size": 10,
32    "id": 4711,
33    "image_size": 2.3,
34    "labels": {
35      "env": "dev"
36    },
37    "name": null,
38    "os_flavor": "ubuntu",
39    "os_version": "20.04",
40    "protection": {
41      "delete": false
42    },
43    "rapid_deploy": false,
44    "status": "creating",
45    "type": "snapshot"
46  }
47}

Detach a Server from a Network

Detaches a Server from a network. The interface for this network will vanish.

HTTP Request

POST /servers/{id}/actions/detach_from_network

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • networkinteger (int64) required

    ID of an existing network to detach the Server from

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"network":4711}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/detach_from_network"

Request

1{
2  "network": 4711
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "detach_from_network",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 4711,
18        "type": "network"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  }
24}

Detach an ISO from a Server

Detaches an ISO from a Server. In case no ISO Image is attached to the Server, the status of the returned Action is immediately set to success

HTTP Request

POST /servers/{id}/actions/detach_iso

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/detach_iso"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "detach_iso",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Disable Backups for a Server

Disables the automatic backup option and deletes all existing Backups for a Server. No more additional charges for backups will be made.

Caution: This immediately removes all existing backups for the Server!

HTTP Request

POST /servers/{id}/actions/disable_backup

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/disable_backup"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "disable_backup",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Disable Rescue Mode for a Server

Disables the Hetzner Rescue System for a Server. This makes a Server start from its disks on next reboot.

Rescue Mode is automatically disabled when you first boot into it or if you do not use it for 60 minutes.

Disabling rescue mode will not reboot your Server — you will have to do this yourself.

HTTP Request

POST /servers/{id}/actions/disable_rescue

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/disable_rescue"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "disable_rescue",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Enable and Configure Backups for a Server

Enables and configures the automatic daily backup option for the Server. Enabling automatic backups will increase the price of the Server by 20%. In return, you will get seven slots where Images of type backup can be stored.

Backups are automatically created daily.

HTTP Request

POST /servers/{id}/actions/enable_backup

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/enable_backup"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "enable_backup",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Enable Rescue Mode for a Server

Enable the Hetzner Rescue System for this Server. The next time a Server with enabled rescue mode boots it will start a special minimal Linux distribution designed for repair and reinstall.

In case a Server cannot boot on its own you can use this to access a Server’s disks.

Rescue Mode is automatically disabled when you first boot into it or if you do not use it for 60 minutes.

Enabling rescue mode will not reboot your Server — you will have to do this yourself.

HTTP Request

POST /servers/{id}/actions/enable_rescue

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

  • typestring
    Allowed: linux64Default: linux64

    Type of rescue system to boot.

Response

  • root_passwordstring

    Password that will be set for this Server once the Action succeeds

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"ssh_keys":[2323],"type":"linux64"}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/enable_rescue"

Request

1{
2  "ssh_keys": [
3    2323
4  ],
5  "type": "linux64"
6}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "enable_rescue",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  },
20  "root_password": "zCWbFhnu950dUTko5f40"
21}

Power off a Server

Cuts power to the Server. This forcefully stops it without giving the Server operating system time to gracefully stop. May lead to data loss, equivalent to pulling the power cord. Power off should only be used when shutdown does not work.

HTTP Request

POST /servers/{id}/actions/poweroff

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/poweroff"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "stop_server",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Power on a Server

Starts a Server by turning its power on.

HTTP Request

POST /servers/{id}/actions/poweron

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/poweron"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "start_server",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Soft-reboot a Server

Reboots a Server gracefully by sending an ACPI request. The Server operating system must support ACPI and react to the request, otherwise the Server will not reboot.

HTTP Request

POST /servers/{id}/actions/reboot

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/reboot"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "reboot_server",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Rebuild a Server from an Image

Rebuilds a Server overwriting its disk with the content of an Image, thereby destroying all data on the target Server

The Image can either be one you have created earlier ( backup or snapshot Image) or it can be a completely fresh system Image provided by us. You can get a list of all available Images with GET /images .

Your Server will automatically be powered off before the rebuild command executes.

HTTP Request

POST /servers/{id}/actions/rebuild

Path Parameters

  • idinteger (int64) required

    ID of the Server

Request

To select which Image to rebuild from you can either pass an ID or a name as the image argument. Passing a name only works for system Images since the other Image types do not have a name set.

  • imagestring required

    ID or name of Image to rebuilt from.

Response

  • root_passwordstring – nullable

    New root password when not using SSH keys

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"image":"ubuntu-20.04"}' \
6	"https://api.hetzner.cloud/v1/servers/$ID/actions/rebuild"

Request

1{
2  "image": "ubuntu-20.04"
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "rebuild_server",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  },
20  "root_password": null
21}

Remove from Placement Group

Removes a Server from a Placement Group.

HTTP Request

POST /servers/{id}/actions/remove_from_placement_group

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/remove_from_placement_group"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "remove_from_placement_group",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Request Console for a Server

Requests credentials for remote access via VNC over websocket to keyboard, monitor, and mouse for a Server. The provided URL is valid for 1 minute, after this period a new url needs to be created to connect to the Server. How long the connection is open after the initial connect is not subject to this timeout.

HTTP Request

POST /servers/{id}/actions/request_console

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

  • passwordstring required

    VNC password to use for this connection (this password only works in combination with a wss_url with valid token)

  • wss_urlstring required

    URL of websocket proxy to use; this includes a token which is valid for a limited time only

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/request_console"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "request_console",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  },
20  "password": "9MQaTg2VAGI0FIpc10k3UpRXcHj2wQ6x",
21  "wss_url": "wss://console.hetzner.cloud/?server_id=1&token=3db32d15-af2f-459c-8bf8-dee1fd05f49c"
22}

Reset a Server

Cuts power to a Server and starts it again. This forcefully stops it without giving the Server operating system time to gracefully stop. This may lead to data loss, it’s equivalent to pulling the power cord and plugging it in again. Reset should only be used when reboot does not work.

HTTP Request

POST /servers/{id}/actions/reset

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/reset"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "reset_server",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Reset root Password of a Server

Resets the root password. Only works for Linux systems that are running the qemu guest agent. Server must be powered on (status running ) in order for this operation to succeed.

This will generate a new password for this Server and return it.

If this does not succeed you can use the rescue system to netboot the Server and manually change your Server password by hand.

HTTP Request

POST /servers/{id}/actions/reset_password

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

  • root_passwordstring

    Password that will be set for this Server once the Action succeeds

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/reset_password"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "reset_password",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  },
20  "root_password": "zCWbFhnu950dUTko5f40"
21}

Shutdown a Server

Shuts down a Server gracefully by sending an ACPI shutdown request. The Server operating system must support ACPI and react to the request, otherwise the Server will not shut down. Please note that the action status in this case only reflects whether the action was sent to the server. It does not mean that the server actually shut down successfully. If you need to ensure that the server is off, use the poweroff action

HTTP Request

POST /servers/{id}/actions/shutdown

Path Parameters

  • idinteger (int64) required

    ID of the Server

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/servers/$ID/actions/shutdown"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "shutdown_server",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Get an Action for a Server

Returns a specific Action object for a Server.

HTTP Request

GET /servers/{id}/actions/{action_id}

Path Parameters

  • idinteger (int64) required

    ID of the Server

  • action_idinteger (int64) required

    ID of the Action

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/servers/$ID/actions/$ACTION_ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_server",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Server Types

Server types define kinds of Servers offered. Each type has an hourly and a monthly cost. You will pay whichever cost is lower for your usage of this specific Server. Costs may differ between Locations.

Currency for all amounts is €. All prices exclude VAT.

Get all Server Types

Gets all Server type objects.

HTTP Request

GET /server_types

Query Parameters

  • namestring

    Can be used to filter Server types by their name. The response will only contain the Server type matching the specified name.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/server_types"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "server_types": [
3    {
4      "architecture": "x86",
5      "cores": 1,
6      "cpu_type": "shared",
7      "deprecated": false,
8      "deprecation": {
9        "announced": "2023-06-01T00:00:00+00:00",
10        "unavailable_after": "2023-09-01T00:00:00+00:00"
11      },
12      "description": "CX11",
13      "disk": 24,
14      "id": 1,
15      "included_traffic": 654321,
16      "memory": 1,
17      "name": "cx11",
18      "prices": [
19        {
20          "location": "fsn1",
21          "price_hourly": {
22            "gross": "1.1900000000000000",
23            "net": "1.0000000000"
24          },
25          "price_monthly": {
26            "gross": "1.1900000000000000",
27            "net": "1.0000000000"
28          }
29        }
30      ],
31      "storage_type": "local"
32    }
33  ]
34}

Get a Server Type

Gets a specific Server type object.

HTTP Request

GET /server_types/{id}

Path Parameters

  • idinteger required

    ID of Server Type

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/server_types/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "server_type": {
3    "architecture": "x86",
4    "cores": 1,
5    "cpu_type": "shared",
6    "deprecated": false,
7    "deprecation": {
8      "announced": "2023-06-01T00:00:00+00:00",
9      "unavailable_after": "2023-09-01T00:00:00+00:00"
10    },
11    "description": "CX11",
12    "disk": 24,
13    "id": 1,
14    "included_traffic": 654321,
15    "memory": 1,
16    "name": "cx11",
17    "prices": [
18      {
19        "location": "fsn1",
20        "price_hourly": {
21          "gross": "1.1900000000000000",
22          "net": "1.0000000000"
23        },
24        "price_monthly": {
25          "gross": "1.1900000000000000",
26          "net": "1.0000000000"
27        }
28      }
29    ],
30    "storage_type": "local"
31  }
32}

SSH Keys

SSH keys are public keys you provide to the cloud system. They can be injected into Servers at creation time. We highly recommend that you use keys instead of passwords to manage your Servers.

Get all SSH keys

Returns all SSH key objects.

HTTP Request

GET /ssh_keys

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc

    Can be used multiple times.

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • fingerprintstring

    Can be used to filter SSH keys by their fingerprint. The response will only contain the SSH key matching the specified fingerprint.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/ssh_keys"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "meta": {
3    "pagination": {
4      "last_page": 4,
5      "next_page": 4,
6      "page": 3,
7      "per_page": 25,
8      "previous_page": 2,
9      "total_entries": 100
10    }
11  },
12  "ssh_keys": [
13    {
14      "created": "2016-01-30T23:55:00+00:00",
15      "fingerprint": "b7:2f:30:a0:2f:6c:58:6c:21:04:58:61:ba:06:3b:2f",
16      "id": 42,
17      "labels": {
18        "environment": "prod",
19        "example.com/my": "label",
20        "just-a-key": ""
21      },
22      "name": "my-resource",
23      "public_key": "ssh-rsa AAAjjk76kgf...Xt"
24    }
25  ]
26}

Create an SSH key

Creates a new SSH key with the given name and public_key . Once an SSH key is created, it can be used in other calls such as creating Servers.

HTTP Request

POST /ssh_keys

Request

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring required

    Name of the SSH key

  • public_keystring required

    Public key

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"labels":{},"name":"My ssh key","public_key":"ssh-rsa AAAjjk76kgf...Xt"}' \
6	"https://api.hetzner.cloud/v1/ssh_keys"

Request

1{
2  "labels": {},
3  "name": "My ssh key",
4  "public_key": "ssh-rsa AAAjjk76kgf...Xt"
5}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "ssh_key": {
3    "created": "2016-01-30T23:55:00+00:00",
4    "fingerprint": "b7:2f:30:a0:2f:6c:58:6c:21:04:58:61:ba:06:3b:2f",
5    "id": 42,
6    "labels": {
7      "environment": "prod",
8      "example.com/my": "label",
9      "just-a-key": ""
10    },
11    "name": "my-resource",
12    "public_key": "ssh-rsa AAAjjk76kgf...Xt"
13  }
14}

Delete an SSH key

Deletes an SSH key. It cannot be used anymore.

HTTP Request

DELETE /ssh_keys/{id}

Path Parameters

  • idinteger (int64) required

    ID of the SSH key

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/ssh_keys/$ID"

Response headers

1Status: 204

Get a SSH key

Returns a specific SSH key object.

HTTP Request

GET /ssh_keys/{id}

Path Parameters

  • idinteger (int64) required

    ID of the SSH key

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/ssh_keys/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "ssh_key": {
3    "created": "2016-01-30T23:55:00+00:00",
4    "fingerprint": "b7:2f:30:a0:2f:6c:58:6c:21:04:58:61:ba:06:3b:2f",
5    "id": 42,
6    "labels": {
7      "environment": "prod",
8      "example.com/my": "label",
9      "just-a-key": ""
10    },
11    "name": "my-resource",
12    "public_key": "ssh-rsa AAAjjk76kgf...Xt"
13  }
14}

Update an SSH key

Updates an SSH key. You can update an SSH key name and an SSH key labels.

Please note that when updating labels, the SSH key current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

HTTP Request

PUT /ssh_keys/{id}

Path Parameters

  • idinteger (int64) required

    ID of the SSH key

Request

  • labelsobject

    User-defined labels (key-value pairs)

  • namestring

    New name Name to set

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"labels":{"labelkey":"value"},"name":"My ssh key"}' \
6	"https://api.hetzner.cloud/v1/ssh_keys/$ID"

Request

1{
2  "labels": {
3    "labelkey": "value"
4  },
5  "name": "My ssh key"
6}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "ssh_key": {
3    "created": "2016-01-30T23:50:00+00:00",
4    "fingerprint": "b7:2f:30:a0:2f:6c:58:6c:21:04:58:61:ba:06:3b:2f",
5    "id": 2323,
6    "labels": {
7      "labelkey": "value"
8    },
9    "name": "My ssh key",
10    "public_key": "ssh-rsa AAAjjk76kgf...Xt"
11  }
12}

Volumes

A Volume is a highly-available, scalable, and SSD-based block storage for Servers.

Pricing for Volumes depends on the Volume size and Location, not the actual used storage.

Please see Hetzner Docs for more details about Volumes.

Get all Volumes

Gets all existing Volumes that you have available.

HTTP Request

GET /volumes

Query Parameters

  • statusstring
    Allowed: available creating

    Can be used multiple times. The response will only contain Volumes matching the status.

  • sortstring
    Allowed: id id:asc id:desc name name:asc name:desc created created:asc created:desc

    Sort resources by field and direction. Can be used multiple times. For more information, see "Sorting".

  • namestring

    Filter resources by their name. The response will only contain the resources matching the specified name.

  • label_selectorstring

    Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/volumes"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "meta": {
3    "pagination": {
4      "last_page": 4,
5      "next_page": 4,
6      "page": 3,
7      "per_page": 25,
8      "previous_page": 2,
9      "total_entries": 100
10    }
11  },
12  "volumes": [
13    {
14      "created": "2016-01-30T23:55:00+00:00",
15      "format": "xfs",
16      "id": 42,
17      "labels": {
18        "environment": "prod",
19        "example.com/my": "label",
20        "just-a-key": ""
21      },
22      "linux_device": "/dev/disk/by-id/scsi-0HC_Volume_4711",
23      "location": {
24        "city": "Falkenstein",
25        "country": "DE",
26        "description": "Falkenstein DC Park 1",
27        "id": 1,
28        "latitude": 50.47612,
29        "longitude": 12.370071,
30        "name": "fsn1",
31        "network_zone": "eu-central"
32      },
33      "name": "my-resource",
34      "protection": {
35        "delete": false
36      },
37      "server": 12,
38      "size": 42,
39      "status": "available"
40    }
41  ]
42}

Create a Volume

Creates a new Volume attached to a Server. If you want to create a Volume that is not attached to a Server, you need to provide the location key instead of server . This can be either the ID or the name of the Location this Volume will be created in. Note that a Volume can be attached to a Server only in the same Location as the Volume itself.

Specifying the Server during Volume creation will automatically attach the Volume to that Server after it has been initialized. In that case, the next_actions key in the response is an array which contains a single attach_volume action.

The minimum Volume size is 10GB and the maximum size is 10TB (10240GB).

A volume’s name can consist of alphanumeric characters, dashes, underscores, and dots, but has to start and end with an alphanumeric character. The total length is limited to 64 characters. Volume names must be unique per Project.

Call specific error codes

Code Description
no_space_left_in_location There is no volume space left in the given location

HTTP Request

POST /volumes

Request

  • automountboolean

    Auto-mount Volume after attach. server must be provided.

  • formatstring

    Format Volume after creation. One of: xfs , ext4

  • labelsobject

    User-defined labels (key-value pairs)

  • locationstring

    Location to create the Volume in (can be omitted if Server is specified)

  • namestring required

    Name of the volume

  • serverinteger (int64)

    Server to which to attach the Volume once it's created (Volume will be created in the same Location as the server)

  • sizeinteger required

    Size of the Volume in GB

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"automount":false,"format":"xfs","labels":{"labelkey":"value"},"location":"nbg1","name":"test-database","size":42}' \
6	"https://api.hetzner.cloud/v1/volumes"

Request

1{
2  "automount": false,
3  "format": "xfs",
4  "labels": {
5    "labelkey": "value"
6  },
7  "location": "nbg1",
8  "name": "test-database",
9  "size": 42
10}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "create_volume",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 554,
18        "type": "volume"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  },
24  "next_actions": [
25    {
26      "command": "attach_volume",
27      "error": {
28        "code": "action_failed",
29        "message": "Action failed"
30      },
31      "finished": null,
32      "id": 13,
33      "progress": 0,
34      "resources": [
35        {
36          "id": 42,
37          "type": "server"
38        },
39        {
40          "id": 554,
41          "type": "volume"
42        }
43      ],
44      "started": "2016-01-30T23:50:00+00:00",
45      "status": "running"
46    }
47  ],
48  "volume": {
49    "created": "2016-01-30T23:50:11+00:00",
50    "format": "xfs",
51    "id": 4711,
52    "labels": {
53      "env": "dev"
54    },
55    "linux_device": "/dev/disk/by-id/scsi-0HC_Volume_4711",
56    "location": {
57      "city": "Falkenstein",
58      "country": "DE",
59      "description": "Falkenstein DC Park 1",
60      "id": 1,
61      "latitude": 50.47612,
62      "longitude": 12.370071,
63      "name": "fsn1",
64      "network_zone": "eu-central"
65    },
66    "name": "database-storage",
67    "protection": {
68      "delete": false
69    },
70    "server": 12,
71    "size": 42,
72    "status": "available"
73  }
74}

Delete a Volume

Deletes a volume. All Volume data is irreversibly destroyed. The Volume must not be attached to a Server and it must not have delete protection enabled.

HTTP Request

DELETE /volumes/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Volume

Example curl

1curl \
2	-X DELETE \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/volumes/$ID"

Response headers

1Status: 204

Get a Volume

Gets a specific Volume object.

HTTP Request

GET /volumes/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Volume

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/volumes/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "volume": {
3    "created": "2016-01-30T23:55:00+00:00",
4    "format": "xfs",
5    "id": 42,
6    "labels": {
7      "environment": "prod",
8      "example.com/my": "label",
9      "just-a-key": ""
10    },
11    "linux_device": "/dev/disk/by-id/scsi-0HC_Volume_4711",
12    "location": {
13      "city": "Falkenstein",
14      "country": "DE",
15      "description": "Falkenstein DC Park 1",
16      "id": 1,
17      "latitude": 50.47612,
18      "longitude": 12.370071,
19      "name": "fsn1",
20      "network_zone": "eu-central"
21    },
22    "name": "my-resource",
23    "protection": {
24      "delete": false
25    },
26    "server": 12,
27    "size": 42,
28    "status": "available"
29  }
30}

Update a Volume

Updates the Volume properties.

Note that when updating labels, the volume’s current set of labels will be replaced with the labels provided in the request body. So, for example, if you want to add a new label, you have to provide all existing labels plus the new label in the request body.

HTTP Request

PUT /volumes/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Volume to update

Request

  • namestring

    New Volume name

Response

Example curl

1curl \
2	-X PUT \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"labels":{"labelkey":"value"},"name":"database-storage"}' \
6	"https://api.hetzner.cloud/v1/volumes/$ID"

Request

1{
2  "labels": {
3    "labelkey": "value"
4  },
5  "name": "database-storage"
6}

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "volume": {
3    "created": "2016-01-30T23:50:11+00:00",
4    "format": "xfs",
5    "id": 4711,
6    "labels": {
7      "labelkey": "value"
8    },
9    "linux_device": "/dev/disk/by-id/scsi-0HC_Volume_4711",
10    "location": {
11      "city": "Falkenstein",
12      "country": "DE",
13      "description": "Falkenstein DC Park 1",
14      "id": 1,
15      "latitude": 50.47612,
16      "longitude": 12.370071,
17      "name": "fsn1",
18      "network_zone": "eu-central"
19    },
20    "name": "database-storage",
21    "protection": {
22      "delete": false
23    },
24    "server": 12,
25    "size": 42,
26    "status": "available"
27  }
28}

Volume Actions

Get all Actions

Returns all Action objects. You can sort the results by using the sort URI parameter, and filter them with the status and id parameter.

HTTP Request

GET /volumes/actions

Query Parameters

  • idinteger (int64)

    Filter the actions by ID. Can be used multiple times. The response will only contain actions matching the specified IDs.

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/volumes/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "start_resource",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:55:00+00:00",
10      "id": 42,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        }
17      ],
18      "started": "2016-01-30T23:55:00+00:00",
19      "status": "success"
20    }
21  ],
22  "meta": {
23    "pagination": {
24      "last_page": 4,
25      "next_page": 4,
26      "page": 3,
27      "per_page": 25,
28      "previous_page": 2,
29      "total_entries": 100
30    }
31  }
32}

Get an Action

Returns a specific Action object.

HTTP Request

GET /volumes/actions/{id}

Path Parameters

  • idinteger (int64) required

    ID of the Action.

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/volumes/actions/$ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "start_resource",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:55:00+00:00",
9    "id": 42,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}

Get all Actions for a Volume

Returns all Action objects for a Volume. You can sort the results by using the sort URI parameter, and filter them with the status parameter.

HTTP Request

GET /volumes/{id}/actions

Path Parameters

  • idinteger (int64) required

    ID of the Volume

Query Parameters

  • sortstring
    Allowed: id id:asc id:desc command command:asc command:desc status status:asc status:desc started started:asc started:desc finished finished:asc finished:desc

    Sort actions by field and direction. Can be used multiple times. For more information, see "Sorting".

  • statusstring
    Allowed: running success error

    Filter the actions by status. Can be used multiple times. The response will only contain actions matching the specified statuses.

  • pageinteger (int64)
    Default: 1

    Page number to return. For more information, see "Pagination".

  • per_pageinteger (int64)
    Default: 25

    Maximum number of entries returned per page. For more information, see "Pagination".

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/volumes/$ID/actions"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "actions": [
3    {
4      "command": "attach_volume",
5      "error": {
6        "code": "action_failed",
7        "message": "Action failed"
8      },
9      "finished": "2016-01-30T23:56:00+00:00",
10      "id": 13,
11      "progress": 100,
12      "resources": [
13        {
14          "id": 42,
15          "type": "server"
16        },
17        {
18          "id": 13,
19          "type": "volume"
20        }
21      ],
22      "started": "2016-01-30T23:55:00+00:00",
23      "status": "success"
24    }
25  ]
26}

Attach Volume to a Server

Attaches a Volume to a Server. Works only if the Server is in the same Location as the Volume.

HTTP Request

POST /volumes/{id}/actions/attach

Path Parameters

  • idinteger (int64) required

    ID of the Volume

Request

  • automountboolean

    Auto-mount the Volume after attaching it

  • serverinteger (int64) required

    ID of the Server the Volume will be attached to

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"automount":false,"server":43}' \
6	"https://api.hetzner.cloud/v1/volumes/$ID/actions/attach"

Request

1{
2  "automount": false,
3  "server": 43
4}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "attach_volume",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 43,
14        "type": "server"
15      },
16      {
17        "id": 554,
18        "type": "volume"
19      }
20    ],
21    "started": "2016-01-30T23:50:00+00:00",
22    "status": "running"
23  }
24}

Change Volume Protection

Changes the protection configuration of a Volume.

HTTP Request

POST /volumes/{id}/actions/change_protection

Path Parameters

  • idinteger (int64) required

    ID of the Volume

Request

  • deleteboolean

    If true, prevents the Volume from being deleted

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"delete":true}' \
6	"https://api.hetzner.cloud/v1/volumes/$ID/actions/change_protection"

Request

1{
2  "delete": true
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "change_protection",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      },
16      {
17        "id": 554,
18        "type": "volume"
19      }
20    ],
21    "started": "2016-01-30T23:55:00+00:00",
22    "status": "success"
23  }
24}

Detach Volume

Detaches a Volume from the Server it’s attached to. You may attach it to a Server again at a later time.

HTTP Request

POST /volumes/{id}/actions/detach

Path Parameters

  • idinteger (int64) required

    ID of the Volume

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	"https://api.hetzner.cloud/v1/volumes/$ID/actions/detach"

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "detach_volume",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Resize Volume

Changes the size of a Volume. Note that downsizing a Volume is not possible.

HTTP Request

POST /volumes/{id}/actions/resize

Path Parameters

  • idinteger (int64) required

    ID of the Volume

Request

  • sizenumber required

    New Volume size in GB (must be greater than current size)

Response

Example curl

1curl \
2	-X POST \
3	-H "Authorization: Bearer $API_TOKEN" \
4	-H "Content-Type: application/json" \
5	-d '{"size":50}' \
6	"https://api.hetzner.cloud/v1/volumes/$ID/actions/resize"

Request

1{
2  "size": 50
3}

Response headers

1Content-Type: application/json
2Status: 201

Response sample

1{
2  "action": {
3    "command": "resize_volume",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": null,
9    "id": 13,
10    "progress": 0,
11    "resources": [
12      {
13        "id": 554,
14        "type": "volume"
15      }
16    ],
17    "started": "2016-01-30T23:50:00+00:00",
18    "status": "running"
19  }
20}

Get an Action for a Volume

Returns a specific Action for a Volume.

HTTP Request

GET /volumes/{id}/actions/{action_id}

Path Parameters

  • idinteger (int64) required

    ID of the Volume

  • action_idinteger (int64) required

    ID of the Action

Response

Example curl

1curl \
2	-H "Authorization: Bearer $API_TOKEN" \
3	"https://api.hetzner.cloud/v1/volumes/$ID/actions/$ACTION_ID"

Response headers

1Content-Type: application/json
2Status: 200

Response sample

1{
2  "action": {
3    "command": "attach_volume",
4    "error": {
5      "code": "action_failed",
6      "message": "Action failed"
7    },
8    "finished": "2016-01-30T23:56:00+00:00",
9    "id": 13,
10    "progress": 100,
11    "resources": [
12      {
13        "id": 42,
14        "type": "server"
15      }
16    ],
17    "started": "2016-01-30T23:55:00+00:00",
18    "status": "success"
19  }
20}