Returns a list of all active listings available on the Borderline marketplace.
https://borderline.biz/api/v1/listings/all/
The API returns a JSON object containing an array of active listings. Each listing includes the following attributes:
pitch
: A brief description of the listing.projectName
: The name of the project for sale.projectLink
: The link to the project's website.techUsed
: A comma-separated list of the technologies used in the project.price
: The price of the project.createdAt
: The date and time the listing was created in ISO 8601 format.HTTP/1.1 200 OK Content-Type: application/json [ { "pitch": "I've built out a whole 3D printing feature too, ...", "projectName": "Commit Print", "projectLink": "https://commitprint.com/", "techUsed": "laravel, mysql", "price": "5000", "createdAt": "2017-09-18T17:39:25.885Z", }, { "pitch": "This is a simple app I made to help people find local events...", "projectName": "EventFinder", "projectLink": "https://eventfinder.io/", "techUsed": "nodejs, mongodb", "price": "1000", "createdAt": "2018-02-12T08:22:43.190Z", }, ...]