Marketing
Makerbox
Free
Hi! It's Sveta and Dan from MakerBox.
We create marketing guides, courses, and templates for Solopreneurs.
So Founders like you know exactly how to grow their businesses.
Marketing Copilot
Premium
AI & Content Marketing: A Resource for B2B Leaders Seeking Extraordinary ROI
What is this magical ChatGPT thing? Everyone’s been talking about it, but most people don’t really know what it is. We know that it’s an artificial intelligence, maybe even that it’s a “large language model”, but what does that mean for B2B businesses looking to fill their funnel and grow revenue? How do we make money from this thing?
Rev
Free
Get your audio and video files transcribed by the largest marketplace of experienced transcribers—guaranteed to be 99% accurate.
Murf.ai
Premium
AI enabled, real people's voices
Make studio-quality voice overs in minutes. Use Murf’s lifelike AI voices for podcasts, videos, and all your professional presentations
Nmi
Free
Deliver the best payments experience for your merchants and their customers across every channel and every device: in-store, mobile, online or self-service. All from a single payment gateway platform.
TailWind
Premium
Create better marketing in half the time with a tool that writes for you, designs for you, and even gives you a plan for growth.
Opus Click
Free
Opus Clip is a generative AI video tool that repurposes long talking videos into shorts in one click.
Brevo
Free
Say hello to Brevo (formerly Sendinblue) — the platform that helps you build customer relationships across email, SMS, chat, and more.
curl --request GET \
--url https://api.brevo.com/v3/smtp/emails/uuid \
--header 'accept: application/json'
const SibApiV3Sdk = require('sib-api-v3-sdk');
let defaultClient = SibApiV3Sdk.ApiClient.instance;
let apiKey = defaultClient.authentications['api-key'];
apiKey.apiKey = 'YOUR API KEY';
let apiInstance = new SibApiV3Sdk.TransactionalEmailsApi();
let uuid = "79xxxxxx-1xxx-4xxx-8xx5-3xxxxxxxxxxx";
apiInstance.getTransacEmailContent(uuid).then(function(data) {
console.log('API called successfully. Returned data: ' + JSON.stringify(data));
}, function(error) {
console.error(error);
});
from __future__ import print_function
import time
import sib_api_v3_sdk
from sib_api_v3_sdk.rest import ApiException
from pprint import pprint
configuration = sib_api_v3_sdk.Configuration()
configuration.api_key['api-key'] = 'YOUR API KEY'
api_instance = sib_api_v3_sdk.TransactionalEmailsApi(sib_api_v3_sdk.ApiClient(configuration))
uuid = '9xxxxxx-1xxx-4xxx-8xx5-3xxxxxxxxxxx'
try:
api_response = api_instance.get_transac_email_content(uuid)
pprint(api_response)
except ApiException as e:
print("Exception when calling SMTPApi->get_transac_email_content: %s\n" % e)
OpenAI
Free
We’ve trained a model called ChatGPT which interacts in a conversational way. The dialogue format makes it possible for ChatGPT to answer followup questions, admit its mistakes, challenge incorrect premises, and reject inappropriate requests.
curl https://api.openai.com/v1/audio/transcriptions \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-H "Content-Type: multipart/form-data" \
-F file="@/path/to/file/audio.mp3" \
-F model="whisper-1"
const { Configuration, OpenAIApi } = require("openai");
const configuration = new Configuration({
apiKey: process.env.OPENAI_API_KEY,
});
const openai = new OpenAIApi(configuration);
const resp = await openai.createTranscription(
fs.createReadStream("audio.mp3"),
"whisper-1"
);
import os
import openai
openai.api_key = os.getenv("OPENAI_API_KEY")
audio_file = open("audio.mp3", "rb")
transcript = openai.Audio.transcribe("whisper-1", audio_file)
Jasper
Free
The AI platform built for your brand, so your team can create content that's on-brand, everywhere you work.
curl --request POST \
--url https://api.jasper.ai/v1/command \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"options": {
"outputCount": 1,
"outputLanguage": "English",
"inputLanguage": "English",
"languageFormality": "default",
"completionType": "performance"
}
}
'
const options = {
method: 'POST',
headers: {accept: 'application/json', 'content-type': 'application/json'},
body: JSON.stringify({
options: {
outputCount: 1,
outputLanguage: 'English',
inputLanguage: 'English',
languageFormality: 'default',
completionType: 'performance'
}
})
};
fetch('https://api.jasper.ai/v1/command', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import requests
url = "https://api.jasper.ai/v1/command"
payload = { "options": {
"outputCount": 1,
"outputLanguage": "English",
"inputLanguage": "English",
"languageFormality": "default",
"completionType": "performance"
} }
headers = {
"accept": "application/json",
"content-type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)
Word AI
Free
Use artificial intelligence to cut turnaround time, extend your budget, and create more high-quality content that Google and readers will love.
Copy AI
Free
Generate your GTM engine of tomorrow with Copy.ai
curl --request POST \
--url https://api.copy.ai/api/webhook \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"eventType": "workflowRun.completed"
}
'
const options = {
method: 'POST',
headers: {accept: 'application/json', 'content-type': 'application/json'},
body: JSON.stringify({eventType: 'workflowRun.completed'})
};
fetch('https://api.copy.ai/api/webhook', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import requests
url = "https://api.copy.ai/api/webhook"
payload = { "eventType": "workflowRun.completed" }
headers = {
"accept": "application/json",
"content-type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)
Writesonic
Free
Create SEO-optimized and plagiarism-free content for your blogs, ads, emails, and website 10X faster.
curl --request POST \
--url 'https://api.writesonic.com/v2/business/content/blog-ideas?engine=economy&language=en' \
--header 'accept: application/json' \
--header 'content-type: application/json'
const options = {
method: 'POST',
headers: {accept: 'application/json', 'content-type': 'application/json'}
};
fetch('https://api.writesonic.com/v2/business/content/blog-ideas?engine=economy&language=en', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
import requests
url = "https://api.writesonic.com/v2/business/content/blog-ideas?engine=economy&language=en"
headers = {
"accept": "application/json",
"content-type": "application/json"
}
response = requests.post(url, headers=headers)
print(response.text)
Copysmith
Free
Introducing Describely!
With Describely, we are giving e-commerce content teams a simple, yet powerful AI solution to generate high-quality, SEO optimized product content at scale
Hypotenuse AI
Free
Provide a few keywords, and we’ll instantly turn them into full-length articles and marketing content, using our world-class AI with a vast knowledge of the world.
Article Forge
Free
Using advanced artificial intelligence and deep learning, Article Forge writes entire 1,500+ word articles automatically. From product descriptions to whole blog posts, Article Forge delivers unique, SEO optimized, high-quality content about any topic with a single click.
Rytr
Free
Rytr is an AI writing assistant that helps you create high-quality content, in just a few seconds, at a fraction of the cost!
SE Ranking
Free
Easy to use, easy to scale, easy to impress your clients & team.
curl -X GET "https://api4.seranking.com/account/balance" -H "Authorization: Token be2165b7d065e278e7305c1c7ef791f283f5d14b"
HTTP/1.0 200 OK
Content-Type: application/json
{"currency":"rur","value":2296380.85}
——
curl -X GET "https://api4.seranking.com/api/sites"
HTTP/1.0 403 Forbidden
Content-Type: application/json
{"message":"No token"}
——
curl -X POST "https://api4.seranking.com" -H "Authorization: Token be2165b7d065e278e7305c1c7ef791f283f5d14b" -d "{\"url\":\"http://example.com\",\"title\":\"example1\"}"
HTTP/1.0 201 Created
Content-Type: application/json
{"site_id":147696}
Coming Soon !
Coming Soon !