curl --request GET \
--url https://dex-api.orderly.network/api/public/v1/blogposts/{slug}import requests
url = "https://dex-api.orderly.network/api/public/v1/blogposts/{slug}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dex-api.orderly.network/api/public/v1/blogposts/{slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dex-api.orderly.network/api/public/v1/blogposts/{slug}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dex-api.orderly.network/api/public/v1/blogposts/{slug}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dex-api.orderly.network/api/public/v1/blogposts/{slug}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dex-api.orderly.network/api/public/v1/blogposts/{slug}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"id": "11111111-1111-4111-8111-111111111111",
"publisher": "BUILDER",
"category": "CAMPAIGN",
"slug": "example_dex-autumn-trading-campaign",
"title": "Autumn trading campaign",
"summary": "Explore the campaign schedule and participation requirements.",
"coverUrl": "https://images.example.com/campaign-banner.webp",
"coverLogoUrl": null,
"keywords": [
"trading",
"campaign"
],
"startsAt": "2026-10-01T00:00:00.000Z",
"endsAt": "2026-10-31T23:59:00.000Z",
"ctaUrl": "https://example.com/campaign",
"author": {
"brokerId": "example_dex",
"name": "Example DEX",
"logo": null
},
"publishedAt": "2026-09-20T12:00:00.000Z",
"updatedAt": "2026-09-20T12:00:00.000Z",
"html": "<h2>Campaign details</h2><p>Explore the campaign schedule and participation requirements.</p>"
}
}{
"success": false,
"error": {
"issues": [
{
"origin": "number",
"code": "too_big",
"maximum": 100,
"inclusive": true,
"path": [
"limit"
],
"message": "Too big: expected number to be <=100"
}
]
}
}{
"error": "Blogpost not found"
}{
"error": "<string>"
}{
"error": "Blogpost public rate limit exceeded",
"code": "BLOGPOST_PUBLIC_RATE_LIMITED",
"retryAfter": 30
}{
"error": "Failed to retrieve blogposts"
}{
"error": "<string>"
}Get published blogpost
Returns one published article with rendered HTML. Use the complete slug returned by the list, including any builder prefix, and preserve the same brokerId for builder-scoped content. A missing, unpublished, or out-of-scope post returns 404.
Shared limit: 60 requests per client IP per rolling 60 seconds, across public Blogpost endpoints. See Blogpost API overview for visibility, rendering, caching, and error handling.
curl --request GET \
--url https://dex-api.orderly.network/api/public/v1/blogposts/{slug}import requests
url = "https://dex-api.orderly.network/api/public/v1/blogposts/{slug}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dex-api.orderly.network/api/public/v1/blogposts/{slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dex-api.orderly.network/api/public/v1/blogposts/{slug}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dex-api.orderly.network/api/public/v1/blogposts/{slug}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dex-api.orderly.network/api/public/v1/blogposts/{slug}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dex-api.orderly.network/api/public/v1/blogposts/{slug}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"id": "11111111-1111-4111-8111-111111111111",
"publisher": "BUILDER",
"category": "CAMPAIGN",
"slug": "example_dex-autumn-trading-campaign",
"title": "Autumn trading campaign",
"summary": "Explore the campaign schedule and participation requirements.",
"coverUrl": "https://images.example.com/campaign-banner.webp",
"coverLogoUrl": null,
"keywords": [
"trading",
"campaign"
],
"startsAt": "2026-10-01T00:00:00.000Z",
"endsAt": "2026-10-31T23:59:00.000Z",
"ctaUrl": "https://example.com/campaign",
"author": {
"brokerId": "example_dex",
"name": "Example DEX",
"logo": null
},
"publishedAt": "2026-09-20T12:00:00.000Z",
"updatedAt": "2026-09-20T12:00:00.000Z",
"html": "<h2>Campaign details</h2><p>Explore the campaign schedule and participation requirements.</p>"
}
}{
"success": false,
"error": {
"issues": [
{
"origin": "number",
"code": "too_big",
"maximum": 100,
"inclusive": true,
"path": [
"limit"
],
"message": "Too big: expected number to be <=100"
}
]
}
}{
"error": "Blogpost not found"
}{
"error": "<string>"
}{
"error": "Blogpost public rate limit exceeded",
"code": "BLOGPOST_PUBLIC_RATE_LIMITED",
"retryAfter": 30
}{
"error": "Failed to retrieve blogposts"
}{
"error": "<string>"
}Path Parameters
Exact returned slug, including any builder prefix. Lowercase letters, digits, hyphens, and underscores; the last character must be a letter or digit.
1 - 165^[a-z0-9_-]*[a-z0-9]$Query Parameters
Builder-platform scope. Trimmed length must be 1-128 characters. Omit for Orderly's official feed. Preserve this value when opening an article from a builder-scoped list. This filters to the broker without automatically adding posts from Orderly's official feed.
1 - 128Response
Published article in the requested scope.
Show child attributes
Show child attributes