curl --request GET \
--url https://api.mentionlab.io/api/projects/{id} \
--header 'x-project-id: <x-project-id>'import requests
url = "https://api.mentionlab.io/api/projects/{id}"
headers = {"x-project-id": "<x-project-id>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-project-id': '<x-project-id>'}};
fetch('https://api.mentionlab.io/api/projects/{id}', 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.mentionlab.io/api/projects/{id}",
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-project-id: <x-project-id>"
],
]);
$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.mentionlab.io/api/projects/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-project-id", "<x-project-id>")
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.mentionlab.io/api/projects/{id}")
.header("x-project-id", "<x-project-id>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/projects/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-project-id"] = '<x-project-id>'
response = http.request(request)
puts response.read_body{
"id": "01234567-89ab-cdef-0123-456789abcdef",
"name": "My Project",
"organisation": "01234567-89ab-cdef-0123-456789abcdef",
"updatedAt": "2021-01-01T00:00:00.000Z",
"slug": "my-project",
"description": "My Project Description",
"industry": "Technology",
"website": "https://www.mentionlab.io",
"currentPo": "PO-2026-Q2-1234",
"themeAnalysisEnabled": false,
"themeLanguage": "en",
"themeClusteringConfig": {
"mint": 0.74,
"fold": 0.82,
"consGrayLo": 0.74,
"autoMerge": 0.92,
"singletonAbsorbLo": 0.62,
"whitenGate": 0.2,
"superAssignFloor": 0.05,
"superMax": 15
},
"settings": {
"customFilters": [
{
"type": "tag-group",
"id": "01234567-89ab-cdef-0123-456789abcdef"
},
{
"type": "continent",
"id": "Europe"
}
]
}
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}Get a project
Returns a single project by its identifier; the path id must match the project header or the request is rejected.
curl --request GET \
--url https://api.mentionlab.io/api/projects/{id} \
--header 'x-project-id: <x-project-id>'import requests
url = "https://api.mentionlab.io/api/projects/{id}"
headers = {"x-project-id": "<x-project-id>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-project-id': '<x-project-id>'}};
fetch('https://api.mentionlab.io/api/projects/{id}', 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.mentionlab.io/api/projects/{id}",
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-project-id: <x-project-id>"
],
]);
$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.mentionlab.io/api/projects/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-project-id", "<x-project-id>")
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.mentionlab.io/api/projects/{id}")
.header("x-project-id", "<x-project-id>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/projects/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-project-id"] = '<x-project-id>'
response = http.request(request)
puts response.read_body{
"id": "01234567-89ab-cdef-0123-456789abcdef",
"name": "My Project",
"organisation": "01234567-89ab-cdef-0123-456789abcdef",
"updatedAt": "2021-01-01T00:00:00.000Z",
"slug": "my-project",
"description": "My Project Description",
"industry": "Technology",
"website": "https://www.mentionlab.io",
"currentPo": "PO-2026-Q2-1234",
"themeAnalysisEnabled": false,
"themeLanguage": "en",
"themeClusteringConfig": {
"mint": 0.74,
"fold": 0.82,
"consGrayLo": 0.74,
"autoMerge": 0.92,
"singletonAbsorbLo": 0.62,
"whitenGate": 0.2,
"superAssignFloor": 0.05,
"superMax": 15
},
"settings": {
"customFilters": [
{
"type": "tag-group",
"id": "01234567-89ab-cdef-0123-456789abcdef"
},
{
"type": "continent",
"id": "Europe"
}
]
}
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}Headers
Project ID to specify the project context
Path Parameters
Unique identifier of the project to retrieve.
"550e8400-e29b-41d4-a716-446655440000"
Response
Unique identifier for the project
"01234567-89ab-cdef-0123-456789abcdef"
Name of the project
"My Project"
Organisation that owns this project
"01234567-89ab-cdef-0123-456789abcdef"
Last update timestamp
"2021-01-01T00:00:00.000Z"
Slug of the project
"my-project"
Description of the project
"My Project Description"
Industry of the project
"Technology"
Website of the project
"https://www.mentionlab.io"
Active purchase order reference for this project.
"PO-2026-Q2-1234"
Whether the async Brand Perception & Intelligence theme-analysis batch is enabled for this project.
false
Theme language for this project: a language code forces a monolingual taxonomy, 'auto' follows each answer.
"en"
Advanced per-project theme-clustering threshold overrides; absent knobs use the defaults.
Show child attributes
Show child attributes
Free-form per-project settings owned by the frontend (e.g. saved custom filters).
Show child attributes
Show child attributes