Access Token
curl --request POST \
--url https://api.streamkap.com/auth/access-token \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"secret": "<string>",
"project_key": "<string>"
}
'import requests
url = "https://api.streamkap.com/auth/access-token"
payload = {
"client_id": "<string>",
"secret": "<string>",
"project_key": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({client_id: '<string>', secret: '<string>', project_key: '<string>'})
};
fetch('https://api.streamkap.com/auth/access-token', 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.streamkap.com/auth/access-token",
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([
'client_id' => '<string>',
'secret' => '<string>',
'project_key' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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.streamkap.com/auth/access-token"
payload := strings.NewReader("{\n \"client_id\": \"<string>\",\n \"secret\": \"<string>\",\n \"project_key\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.streamkap.com/auth/access-token")
.header("Content-Type", "application/json")
.body("{\n \"client_id\": \"<string>\",\n \"secret\": \"<string>\",\n \"project_key\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.streamkap.com/auth/access-token")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"client_id\": \"<string>\",\n \"secret\": \"<string>\",\n \"project_key\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"expires": "<string>",
"expiresIn": 123,
"accessToken": "<string>",
"refreshToken": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authentication
Access Token
Exchange credentials for a JWT access token.
Accepts either:
client_id+secret(classic API token flow)project_key: a Streamkap Project Key credential file (raw JSON or base64-encoded)
For project_key input, the API credentials are extracted from the bundle and used
to issue the JWT. Kafka-only Project Keys (no API credentials) cannot be exchanged
for a JWT.
POST
/
auth
/
access-token
Access Token
curl --request POST \
--url https://api.streamkap.com/auth/access-token \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"secret": "<string>",
"project_key": "<string>"
}
'import requests
url = "https://api.streamkap.com/auth/access-token"
payload = {
"client_id": "<string>",
"secret": "<string>",
"project_key": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({client_id: '<string>', secret: '<string>', project_key: '<string>'})
};
fetch('https://api.streamkap.com/auth/access-token', 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.streamkap.com/auth/access-token",
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([
'client_id' => '<string>',
'secret' => '<string>',
'project_key' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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.streamkap.com/auth/access-token"
payload := strings.NewReader("{\n \"client_id\": \"<string>\",\n \"secret\": \"<string>\",\n \"project_key\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.streamkap.com/auth/access-token")
.header("Content-Type", "application/json")
.body("{\n \"client_id\": \"<string>\",\n \"secret\": \"<string>\",\n \"project_key\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.streamkap.com/auth/access-token")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"client_id\": \"<string>\",\n \"secret\": \"<string>\",\n \"project_key\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"expires": "<string>",
"expiresIn": 123,
"accessToken": "<string>",
"refreshToken": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Was this page helpful?
⌘I