Files
mirotalk/app/api/stats/stats.sh
T
2024-12-20 21:58:09 +01:00

11 lines
297 B
Bash
Executable File

#!/bin/bash
API_KEY_SECRET="mirotalkp2p_default_secret"
MIROTALK_URL="https://p2p.mirotalk.com/api/v1/stats"
#MIROTALK_URL="http://localhost:3000/api/v1/stats"
curl $MIROTALK_URL \
--header "authorization: $API_KEY_SECRET" \
--header "Content-Type: application/json" \
--request GET