v1.0.0
Example of an OpenAPI document with security
This is an example of an OpenAPI document with security definitions and security requirements.
Servers
https://localhost:3000Local server
ID: onlyApiKey
GET /onlyApiKey
GET
/onlyApiKey
Authorizations
apiKey
TypeAPI Key (header: api_key)
GET
/onlyApiKey
Samples
curl https://localhost:3000/onlyApiKey \
--header 'Apikey: apiKey' \
--header 'Content-Type: application/json'
fetch('https://localhost:3000/onlyApiKey', {
headers: {
Apikey: 'apiKey',
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "https://localhost:3000/onlyApiKey",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Apikey: apiKey",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://localhost:3000/onlyApiKey"
headers = {
"Apikey": "apiKey",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
ID: onlyBearerAuth
POST /onlyBearerAuth
POST
/onlyBearerAuth
Authorizations
bearerAuth
TypeHTTP (bearer)
POST
/onlyBearerAuth
Samples
curl https://localhost:3000/onlyBearerAuth \
--request POST \
--header 'Authorization: Bearer bearerAuth' \
--header 'Content-Type: application/json'
fetch('https://localhost:3000/onlyBearerAuth', {
method: 'POST',
headers: {
Authorization: 'Bearer bearerAuth',
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "https://localhost:3000/onlyBearerAuth",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer bearerAuth",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://localhost:3000/onlyBearerAuth"
headers = {
"Authorization": "Bearer bearerAuth",
"Content-Type": "application/json"
}
response = requests.post(url, headers=headers)
print(response.json())
ID: apiKeyAndBearerAuth
PUT /apiKeyAndBearerAuth
PUT
/apiKeyAndBearerAuth
Authorizations
apiKey
TypeAPI Key (header: api_key)
bearerAuth
TypeHTTP (bearer)
Parameters
Header Parameters
headerParam*
Header parameter description
Typestring
RequiredExample
value
PUT
/apiKeyAndBearerAuth
Samples
curl https://localhost:3000/apiKeyAndBearerAuth \
--request PUT \
--header 'Apikey: apiKey' \
--header 'Authorization: Bearer bearerAuth' \
--header 'Content-Type: application/json' \
--header 'Headerparam: value'
fetch('https://localhost:3000/apiKeyAndBearerAuth', {
method: 'PUT',
headers: {
Apikey: 'apiKey',
Authorization: 'Bearer bearerAuth',
'Content-Type': 'application/json',
Headerparam: 'value'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "https://localhost:3000/apiKeyAndBearerAuth",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_HTTPHEADER => [
"Apikey: apiKey",
"Authorization: Bearer bearerAuth",
"Content-Type: application/json",
"Headerparam: value"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://localhost:3000/apiKeyAndBearerAuth"
headers = {
"Apikey": "apiKey",
"Authorization": "Bearer bearerAuth",
"Content-Type": "application/json",
"Headerparam": "value"
}
response = requests.put(url, headers=headers)
print(response.json())
ID: apiKeyOrBearerAuth
GET /apiKeyOrBearerAuth/{pathParam}
GET
/apiKeyOrBearerAuth/{pathParam}
Authorizations
apiKey
TypeAPI Key (header: api_key)
or
bearerAuth
TypeHTTP (bearer)
Parameters
Path Parameters
pathParam*
Path parameter description
Typestring
RequiredGET
/apiKeyOrBearerAuth/{pathParam}
Samples
curl 'https://localhost:3000/apiKeyOrBearerAuth/%7BpathParam%7D' \
--header 'Apikey: apiKey' \
--header 'Content-Type: application/json'
fetch('https://localhost:3000/apiKeyOrBearerAuth/%7BpathParam%7D', {
headers: {
Apikey: 'apiKey',
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "https://localhost:3000/apiKeyOrBearerAuth/%7BpathParam%7D",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Apikey: apiKey",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://localhost:3000/apiKeyOrBearerAuth/%7BpathParam%7D"
headers = {
"Apikey": "apiKey",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
ID: noSecurity
GET /noSecurity
GET
/noSecurity
GET
/noSecurity
Samples
curl https://localhost:3000/noSecurity \
--header 'Content-Type: application/json'
fetch('https://localhost:3000/noSecurity', {
headers: {
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "https://localhost:3000/noSecurity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://localhost:3000/noSecurity"
headers = {"Content-Type": "application/json"}
response = requests.get(url, headers=headers)
print(response.json())
ID: multipleSecurity
POST /multipleSecurity/{pathParam}
POST
/multipleSecurity/{pathParam}
Authorizations
apiKey|bearerAuth +
apiKey
TypeAPI Key (header: api_key)
bearerAuth
TypeHTTP (bearer)
or
basicAuth|internalApiKey +
basicAuth
Basic authentication with username and password
TypeHTTP (basic)
internalApiKey
Internal API key for special customers
TypeAPI Key (header: internal_api_key)
Example
special-key
Parameters
Path Parameters
pathParam*
Path parameter description
Typestring
RequiredQuery Parameters
param1*
Query parameter description
Typestring
RequiredEnum
value1
value2
default
value1
param2*
Another query parameter description
Typestring
RequiredRequest Body
{
"prop1": "string",
"prop2": 0,
"prop3": [
[
"value1",
"value2"
]
]
}
POST
/multipleSecurity/{pathParam}
Samples
curl 'https://localhost:3000/multipleSecurity/%7BpathParam%7D' \
--request POST \
--header 'Apikey: apiKey' \
--header 'Authorization: Bearer bearerAuth' \
--header 'Content-Type: application/json' \
--data '{
"prop1": "string",
"prop2": 0,
"prop3": [
[
"value1",
"value2"
]
]
}'
fetch('https://localhost:3000/multipleSecurity/%7BpathParam%7D', {
method: 'POST',
headers: {
Apikey: 'apiKey',
Authorization: 'Bearer bearerAuth',
'Content-Type': 'application/json'
},
body: JSON.stringify({
prop1: 'string',
prop2: 0,
prop3: [{
0: 'value1',
1: 'value2'
}]
})
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "https://localhost:3000/multipleSecurity/%7BpathParam%7D",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'prop1' => 'string',
'prop2' => 0,
'prop3' => [
[
'value1',
'value2'
]
]
]),
CURLOPT_HTTPHEADER => [
"Apikey: apiKey",
"Authorization: Bearer bearerAuth",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://localhost:3000/multipleSecurity/%7BpathParam%7D"
payload = {
"prop1": "string",
"prop2": 0,
"prop3": [["value1", "value2"]]
}
headers = {
"Apikey": "apiKey",
"Authorization": "Bearer bearerAuth",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())