Guidelines for cURL commands
Use long parameter names, like in the API reference documentation, for clarity:
--header
(instead of-H
)--request
(when needed, instead of-X
)--data
(instead of-d
)
You do not need to use the --url
parameter since it is the main cURL parameter. Also, the URL does not need to be enclosed in double quotes (""
), except if it contains a ?
character (that is, when it includes a query string).
Use two spaces to indent request or response bodies (the additional data included in the request/response).
For requests with body content, start indenting when you get to the body part (the line after --data
in the examples in this page). This means that the URL, any headers, and the line containing the --data
parameter should not be indented.
Requests without a body should not be indented also, to make them consistent with requests containing a body.
jq ↗ is a separate tool that not everyone will have installed. cURL examples should not include response formatting through jq as part of the example.
If you must suggest the use of this tool, you can add a link to the Make API calls page in Fundamentals, which mentions this tool. Do not repeat the existing content about jq near the cURL example.
- Make sure not to use typographical or smart quotes in a cURL command, or the command will fail.
- Placeholders in the URL should follow the same format as in the API documentation:
{zone_id}
- Placeholders in the request body (that is, the data included in a
POST
/PUT
/PATCH
request) should use this format:<RULE_ID>
The same placeholder name should correspond to the same value – use different placeholder names for different ID values. You can use the same request placeholders in the response, if they should match the values in the request.
If using Email + API Key authentication, include the following arguments in the cURL command to add the two required HTTP headers to the request:
If using API Token (the preferred authentication method), include the following arguments in the cURL command to add the required HTTP header to the request:
For GET
requests, do not include the --request GET
command-line argument, since it is the default where the request does not include a body and it is not recommended for GET
/POST
requests:
Requests without a body do not need syntax highlight, but we use bash
syntax highlighting to highlight the several delimited strings.
Make sure to include a Content-Type
header if the request includes a body. For requests with JSON content, the header should be Content-Type: application/json
.
This header should appear after the authentication headers.
For POST
requests with a body, do not include the --request POST
command-line argument, since it is the default when the request includes a body.
Enclose the JSON payload ( the --data
command-line argument) in single quotes ('
) instead of double quotes because it requires less escaping (strings in JSON must be delimited using double quotes).
The recommended way of escaping a single quote inside the body is the following (assuming the user will run the command in a bash-like terminal):
- Replace the single quote
'
with'\''
Which means “close string, add escaped single quote, begin string again”.
If you have a POST
request without a body, you must add the --request POST
argument explicitly to the cURL command.
Code blocks with example requests that include a JSON body should use bash
syntax, similarly to example requests without a body.
Include the complete response (including any empty error and message arrays, if present) using json
syntax highlighting.
A response starts either with an object ({ ... }
) or a list ([ ... ]
). The initial character should appear on its own line, as well as the last character.
- If there are IDs that were obtained using a previous command, or if their exact value is not relevant in the current context, use a placeholder (for example,
<RULE_ID>
) instead of the ID. The same placeholder name should correspond to the same value. Use different placeholder names for different ID values. - Response excerpts or snippets containing the most relevant parts of the response body should mention that they do not correspond to the entire response.