Skip to content
v1.0.0

Response statuses

Example of an OpenAPI document with response statuses.

License

MIT

Servers

https://httpstat.us/

Default


ID: get200

Get 200

GET
200

Example of a response with a 200 status code.

Responses

Successful response
application/json
JSON
"200 OK"

Samples

cURL
curl https://httpstat.us/200 \
  --header 'Content-Type: application/json'
JavaScript
fetch('https://httpstat.us/200', {
  headers: {
    'Content-Type': 'application/json'
  }
})
PHP
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://httpstat.us/200",
  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;
}
Python
import requests

url = "https://httpstat.us/200"

headers = {"Content-Type": "application/json"}

response = requests.get(url, headers=headers)

print(response.json())

ID: get201

Get 201

GET
201

Example of a response with a 201 status code.

Responses

Created
application/json
JSON
"201 Created"

Samples

cURL
curl https://httpstat.us/201 \
  --header 'Content-Type: application/json'
JavaScript
fetch('https://httpstat.us/201', {
  headers: {
    'Content-Type': 'application/json'
  }
})
PHP
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://httpstat.us/201",
  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;
}
Python
import requests

url = "https://httpstat.us/201"

headers = {"Content-Type": "application/json"}

response = requests.get(url, headers=headers)

print(response.json())

ID: get400

Get 400

GET
400

Example of a response with a 400 status code.

Responses

Bad Request
application/json
JSON
"400 Bad Request"

Samples

cURL
curl https://httpstat.us/400 \
  --header 'Content-Type: application/json'
JavaScript
fetch('https://httpstat.us/400', {
  headers: {
    'Content-Type': 'application/json'
  }
})
PHP
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://httpstat.us/400",
  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;
}
Python
import requests

url = "https://httpstat.us/400"

headers = {"Content-Type": "application/json"}

response = requests.get(url, headers=headers)

print(response.json())

ID: get401

Get 401

GET
401

Example of a response with a 401 status code.

Responses

Unauthorized
application/json
JSON
"401 Unauthorized"

Samples

cURL
curl https://httpstat.us/401 \
  --header 'Content-Type: application/json'
JavaScript
fetch('https://httpstat.us/401', {
  headers: {
    'Content-Type': 'application/json'
  }
})
PHP
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://httpstat.us/401",
  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;
}
Python
import requests

url = "https://httpstat.us/401"

headers = {"Content-Type": "application/json"}

response = requests.get(url, headers=headers)

print(response.json())

ID: get403

Get 403

GET
403

Example of a response with a 403 status code.

Responses

Forbidden
application/json
JSON
"403 Forbidden"

Samples

cURL
curl https://httpstat.us/403 \
  --header 'Content-Type: application/json'
JavaScript
fetch('https://httpstat.us/403', {
  headers: {
    'Content-Type': 'application/json'
  }
})
PHP
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://httpstat.us/403",
  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;
}
Python
import requests

url = "https://httpstat.us/403"

headers = {"Content-Type": "application/json"}

response = requests.get(url, headers=headers)

print(response.json())

ID: get404

Get 404

GET
404

Example of a response with a 404 status code.

Responses

Not Found
application/json
JSON
"404 Not Found"

Samples

cURL
curl https://httpstat.us/404 \
  --header 'Content-Type: application/json'
JavaScript
fetch('https://httpstat.us/404', {
  headers: {
    'Content-Type': 'application/json'
  }
})
PHP
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://httpstat.us/404",
  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;
}
Python
import requests

url = "https://httpstat.us/404"

headers = {"Content-Type": "application/json"}

response = requests.get(url, headers=headers)

print(response.json())

ID: get500

Get 500

GET
500

Example of a response with a 500 status code.

Responses

Internal Server Error
application/json
JSON
"500 Internal Server Error"

Samples

cURL
curl https://httpstat.us/500 \
  --header 'Content-Type: application/json'
JavaScript
fetch('https://httpstat.us/500', {
  headers: {
    'Content-Type': 'application/json'
  }
})
PHP
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://httpstat.us/500",
  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;
}
Python
import requests

url = "https://httpstat.us/500"

headers = {"Content-Type": "application/json"}

response = requests.get(url, headers=headers)

print(response.json())

Powered by VitePress OpenAPI