List offers
curl --request GET \
--url https://api.wondeya.com/v1/offers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.wondeya.com/v1/offers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.wondeya.com/v1/offers', 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://api.wondeya.com/v1/offers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api.wondeya.com/v1/offers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.wondeya.com/v1/offers")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.wondeya.com/v1/offers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"agentId": {},
"key": "<string>",
"name": {
"es": "<string>",
"en": "<string>"
},
"description": "<string>",
"features": [
{
"es": "<string>",
"en": "<string>"
}
],
"highlight": true,
"ctaLinkId": {},
"status": "active",
"createdAt": "<string>",
"updatedAt": "<string>",
"price": {
"amount": 123,
"currency": "USD",
"period": "month"
},
"ctaLabel": {
"es": "<string>",
"en": "<string>"
}
}
],
"hasMore": true,
"nextCursor": "<string>"
}Offers
List offers
The offers of an agent (or the workspace pool), cursor-paginated. Pass agentId to scope to one agent.
GET
/
v1
/
offers
List offers
curl --request GET \
--url https://api.wondeya.com/v1/offers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.wondeya.com/v1/offers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.wondeya.com/v1/offers', 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://api.wondeya.com/v1/offers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api.wondeya.com/v1/offers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.wondeya.com/v1/offers")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.wondeya.com/v1/offers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"agentId": {},
"key": "<string>",
"name": {
"es": "<string>",
"en": "<string>"
},
"description": "<string>",
"features": [
{
"es": "<string>",
"en": "<string>"
}
],
"highlight": true,
"ctaLinkId": {},
"status": "active",
"createdAt": "<string>",
"updatedAt": "<string>",
"price": {
"amount": 123,
"currency": "USD",
"period": "month"
},
"ctaLabel": {
"es": "<string>",
"en": "<string>"
}
}
],
"hasMore": true,
"nextCursor": "<string>"
}Authorizations
A workspace API key: wdy_live_… / wdy_test_…. Created at POST /workspaces/{tenantId}/keys and shown exactly once.
Query Parameters
How many items to return (1–100).
Required range:
1 <= x <= 100Opaque cursor: pass the nextCursor of a previous page to get the next one.
Opaque cursor for paging backwards (items before it).