Online REST Client [Curl/Bash Code]

ReqBin is the best Online REST Client for API developers and testers. ReqBin REST Client quickly and easily makes REST API requests to any API endpoint and inspects server responses. Inspect REST API with automatic syntax highlighting. To send requests to REST API endpoints, enter your URL and data and click Submit. The Online REST API client will send a request to the target server and display a detailed response with HTTP headers, response content, and timing. The Curl/Bash code was automatically generated for the Online REST Client example.
Online REST Client [Curl/Bash Code] Send
GET /echo/get/json HTTP/1.1
Host: reqbin.com

Updated: Viewed: 10713 times
Curl/Bash code for Online REST Client example

Curl/Bash code for Online REST Client Example

This Curl/Bash code snippet was generated automatically for the Online REST Client example.
<< Back to the Online REST Client example

What is REST?

REST (stands for REpresentational State Transfer) is an architectural style that implements standards between computer systems on the Internet to make it simple for systems to interact with each other. REST has its own rules and limitations, just like different architectural styles. REST systems (also known as RESTful systems) are separate stateless client and server tasks.

What is API?

API (Application Programming Interface) is a computational interface that describes how multiple software components interact and allows applications to exchange data between them. The APIs are standard-compliant (HTTP and REST), developer and automation-friendly, and easy to test. APIs are usually well-documented use and suitable for version control.

REST Client Example

The following is an example REST client to the ReqBin echo URL:

Online REST Client Example
GET /echo/get/json HTTP/1.1
Host: reqbin.com

Server response to our REST request:

Server Response Example
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 19


{"success":"true"}

See also

Generate code snippets for Curl/Bash and other programming languages

Convert your Online REST Client request to the PHP, JavaScript/AJAX, Node.js, Curl/Bash, Python, Java, C#/.NET code snippets using the Curl/Bash code generator.