Getting Started
It takes less than 5 minutes to get started with Zeplo.
Sign up to Zeplo - it’s free for the first 2,000 requests
Obtain your API token
Send a HTTPS request by prefixing it with
zeplo.to/
and adding your API token as a query parameter?_token=<token>
.
Try running the following command in your terminal/browser, and then visit the console to see logged request!
Command line
curl -X POST "zeplo.to/postman-echo.com/post?_token=<insert_your_api_token>"
Node JS
import request from 'axios'
request({
method: 'POST',
url: 'zeplo.to/postman-echo.com/post',
params: {
_token: "<insert_your_api_token>",
}
})