Create LinkedIn Post
curl --request POST \
--url https://api.stover.app/v1/posts/linkedin \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"content": "<string>",
"media_urls": [
"<string>"
],
"hashtags": [
"<string>"
],
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.stover.app/v1/posts/linkedin"
payload = {
"content": "<string>",
"media_urls": ["<string>"],
"hashtags": ["<string>"],
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
content: '<string>',
media_urls: ['<string>'],
hashtags: ['<string>'],
status: 'draft',
scheduled_date: '2023-11-07T05:31:56Z'
})
};
fetch('https://api.stover.app/v1/posts/linkedin', 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.stover.app/v1/posts/linkedin",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'content' => '<string>',
'media_urls' => [
'<string>'
],
'hashtags' => [
'<string>'
],
'status' => 'draft',
'scheduled_date' => '2023-11-07T05:31:56Z'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.stover.app/v1/posts/linkedin"
payload := strings.NewReader("{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.stover.app/v1/posts/linkedin")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stover.app/v1/posts/linkedin")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Posts
Create a post for LinkedIn.
POST
/
v1
/
posts
/
linkedin
Create LinkedIn Post
curl --request POST \
--url https://api.stover.app/v1/posts/linkedin \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"content": "<string>",
"media_urls": [
"<string>"
],
"hashtags": [
"<string>"
],
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.stover.app/v1/posts/linkedin"
payload = {
"content": "<string>",
"media_urls": ["<string>"],
"hashtags": ["<string>"],
"status": "draft",
"scheduled_date": "2023-11-07T05:31:56Z"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
content: '<string>',
media_urls: ['<string>'],
hashtags: ['<string>'],
status: 'draft',
scheduled_date: '2023-11-07T05:31:56Z'
})
};
fetch('https://api.stover.app/v1/posts/linkedin', 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.stover.app/v1/posts/linkedin",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'content' => '<string>',
'media_urls' => [
'<string>'
],
'hashtags' => [
'<string>'
],
'status' => 'draft',
'scheduled_date' => '2023-11-07T05:31:56Z'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.stover.app/v1/posts/linkedin"
payload := strings.NewReader("{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.stover.app/v1/posts/linkedin")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stover.app/v1/posts/linkedin")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"content\": \"<string>\",\n \"media_urls\": [\n \"<string>\"\n ],\n \"hashtags\": [\n \"<string>\"\n ],\n \"status\": \"draft\",\n \"scheduled_date\": \"2023-11-07T05:31:56Z\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Request Fields
| Field | Required | Description |
|---|---|---|
content | Yes | Post content (max 3,000 chars) |
media_urls | No | URLs of images/videos |
hashtags | No | Hashtags without # prefix |
status | No | draft or scheduled |
scheduled_date | No | ISO 8601 date |
Example
curl -X POST https://api.stover.app/v1/posts/linkedin \
-H "Authorization: Bearer stover_pk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"content": "Excited to announce our latest partnership!",
"hashtags": ["partnership", "business"],
"status": "draft"
}'
const response = await fetch('https://api.stover.app/v1/posts/linkedin', {
method: 'POST',
headers: {
'Authorization': 'Bearer stover_pk_your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
content: 'Excited to announce our latest partnership!',
hashtags: ['partnership', 'business'],
status: 'draft'
})
});
import requests
response = requests.post(
'https://api.stover.app/v1/posts/linkedin',
headers={
'Authorization': 'Bearer stover_pk_your_api_key',
'Content-Type': 'application/json'
},
json={
'content': 'Excited to announce our latest partnership!',
'hashtags': ['partnership', 'business'],
'status': 'draft'
}
)
Authorizations
API key: Bearer stover_pk_...
Body
application/json
⌘I