cURL
curl --request GET \
--url https://api.deepreel.com/subscription/active/ \
--header 'X-API-KEY: <api-key>'import requests
url = "https://api.deepreel.com/subscription/active/"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://api.deepreel.com/subscription/active/', 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.deepreel.com/subscription/active/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$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.deepreel.com/subscription/active/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
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.deepreel.com/subscription/active/")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.deepreel.com/subscription/active/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"subscription": {
"plan": {
"name": "<string>",
"usage_based_allowed": true
},
"plan_expires_at": "2023-11-07T05:31:56Z",
"total_credits": 123,
"credits_used": 123,
"extra_credits_charges": 123,
"total_custom_avatar_credits": 123,
"custom_avatar_credits_left": 123,
"scheduled_subscription": {
"plan": "<string>",
"start_date": "2023-11-07T05:31:56Z"
}
}
}User
Get User Subscription Info
Gets all information about the users active subscription.
GET
/
subscription
/
active
/
cURL
curl --request GET \
--url https://api.deepreel.com/subscription/active/ \
--header 'X-API-KEY: <api-key>'import requests
url = "https://api.deepreel.com/subscription/active/"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://api.deepreel.com/subscription/active/', 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.deepreel.com/subscription/active/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$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.deepreel.com/subscription/active/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
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.deepreel.com/subscription/active/")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.deepreel.com/subscription/active/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"subscription": {
"plan": {
"name": "<string>",
"usage_based_allowed": true
},
"plan_expires_at": "2023-11-07T05:31:56Z",
"total_credits": 123,
"credits_used": 123,
"extra_credits_charges": 123,
"total_custom_avatar_credits": 123,
"custom_avatar_credits_left": 123,
"scheduled_subscription": {
"plan": "<string>",
"start_date": "2023-11-07T05:31:56Z"
}
}
}Authorizations
Your API key with the prefix: dr_. This is required by all endpoints to access our API programatically. You can view your API Key by navigating to the account settings panel (In the bottom left corner click on your Account → profile)
Response
200 - application/json
Show child attributes
Show child attributes
⌘I
