Cloudflare Docs
Cloudflare Fundamentals
Edit this page on GitHub
Set theme to dark (⇧+D)

Create an API token

  1. From the Cloudflare dashboard, go to My Profile > API Tokens.

  2. Select Create Token.

  3. Select a template from the available API token templates or create a custom token. We use the Edit zone DNS template in the following examples.

  4. Add or edit the token name to describe why or how the token is used. Templates are prefilled with a token name and permissions.

    Token template overview screen
  5. Modify the token’s permissions. After selecting a permissions group (Account, User, or Zone), choose what level of access to grant the token. Most groups offer Edit or Read options. Edit is full CRUDL (create, read, update, delete, list) access, while Read is the read permission and list where appropriate. Refer to the available token permissions for more information.

  6. Select which resources the token is authorized to access. For example, granting Zone DNS Read access to a zone example.com will allow the token to read DNS records only for that specific zone. Any other zone will return an error for DNS record reads operations. Any other operation on that zone will also return an error.

  7. (Optional) Restrict how a token is used in the Client IP Address Filtering and TTL (time to live) fields.

  8. Select Continue to summary.

  9. Review the token summary. Select Edit token to make adjustments. You can also edit a token after creation.

    Token summary screen displaying the resources and permissions selected
  10. Select Create Token to generate the token’s secret.

  11. Copy the secret to a secure place.

Token creation completion screen displaying your API token and the <code>curl</code> command to test your token

The token secret page also includes an example command to test the token. Use the /user/tokens/verify endpoint to fetch the current status of the given token.

$ curl "https://api.cloudflare.com/client/v4/user/tokens/verify" \
-H "Authorization: Bearer <API_TOKEN>"

The result:

{
"result": {
"id": "100bf38cc8393103870917dd535e0628",
"status": "active"
},
"success": true,
"errors": [],
"messages": [
{
"code": 10000,
"message": "This API Token is valid and active",
"type": null
}
]
}

With this you have successfully created an API token and can start working with the Cloudflare API. After creating your first API token, you can create additional API tokens via the API.