Python
import requests
resp = requests.get(
"https://api.pmxt.dev/api/feeds",
headers={"Authorization": "Bearer YOUR_PMXT_API_KEY"},
)
print(resp.json()["data"])const resp = await fetch("https://api.pmxt.dev/api/feeds", {
headers: { Authorization: "Bearer YOUR_PMXT_API_KEY" },
});
const { data } = await resp.json();
console.log(data);curl --request GET \
--url https://api.pmxt.dev/api/feeds \
--header 'Authorization: Bearer <token>'package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.pmxt.dev/api/feeds"
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.pmxt.dev/api/feeds")
.header("Authorization", "Bearer <token>")
.asString();{
"success": true,
"data": [
"<string>"
]
}Data Feeds
List Available Feeds
Returns the list of available data feed providers.
GET
/
api
/
feeds
Python
import requests
resp = requests.get(
"https://api.pmxt.dev/api/feeds",
headers={"Authorization": "Bearer YOUR_PMXT_API_KEY"},
)
print(resp.json()["data"])const resp = await fetch("https://api.pmxt.dev/api/feeds", {
headers: { Authorization: "Bearer YOUR_PMXT_API_KEY" },
});
const { data } = await resp.json();
console.log(data);curl --request GET \
--url https://api.pmxt.dev/api/feeds \
--header 'Authorization: Bearer <token>'package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.pmxt.dev/api/feeds"
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.pmxt.dev/api/feeds")
.header("Authorization", "Bearer <token>")
.asString();{
"success": true,
"data": [
"<string>"
]
}Was this page helpful?

