Single status check
Use account and publish identifiers to check a specific post. For TikTok, include mediaType when needed to resolve the correct public post URL behavior.
const API_BASE_URL = 'https://api.wahdx.com';
const API_KEY = process.env.WAHDX_API_KEY;
await fetch(API_BASE_URL + '/api/content/status/{accountId}/{publishId}?mediaType=video', {
method: 'GET',
headers: {
'X-API-Key': API_KEY
}
});import os
import requests
API_BASE_URL = 'https://api.wahdx.com'
API_KEY = os.environ['WAHDX_API_KEY']
response = requests.get(
API_BASE_URL + '/api/content/status/{accountId}/{publishId}?mediaType=video',
headers={
'X-API-Key': API_KEY,
},
timeout=30,
)
response.raise_for_status()
print(response.json())curl -X GET "https://api.wahdx.com/api/content/status/{accountId}/{publishId}?mediaType=video" \
-H "X-API-Key: $WAHDX_API_KEY"