Search Community Notes Written
GET
/
2
/
notes
/
search
/
notes_written
Search Community Notes Written
curl --request GET \
--url https://api.x.com/2/notes/search/notes_written \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.x.com/2/notes/search/notes_written"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.x.com/2/notes/search/notes_written', 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.x.com/2/notes/search/notes_written",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.x.com/2/notes/search/notes_written"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.x.com/2/notes/search/notes_written")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.x.com/2/notes/search/notes_written")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"info": {
"classification": "<string>",
"misleading_tags": [
"<string>"
],
"post_id": "<string>",
"rating_status": "<string>",
"text": "<string>",
"trustworthy_sources": true
},
"scoring_status": {
"has_access": true,
"rating_counts_per_model": [
{
"model_name": "<string>",
"value": {
"negative_factor_bucket_counts": {
"helpful_count": 123,
"helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"not_helpful_count": 123,
"not_helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"somewhat_helpful_count": 123
},
"neutral_factor_bucket_counts": {
"helpful_count": 123,
"helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"not_helpful_count": 123,
"not_helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"somewhat_helpful_count": 123
},
"positive_factor_bucket_counts": {
"helpful_count": 123,
"helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"not_helpful_count": 123,
"not_helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"somewhat_helpful_count": 123
}
}
}
]
},
"status": "<string>",
"test_result": {
"evaluation_outcome": [
{
"evaluator_score_bucket": "<string>",
"evaluator_type": "<string>"
}
]
}
}
],
"errors": [
{
"detail": "<string>",
"resource_type": "<string>",
"title": "<string>",
"type": "https://api.x.com/2/problems/resource-not-found",
"parameter": "<string>",
"resource_id": "<string>",
"status": 123,
"value": "<string>"
}
],
"meta": {
"next_token": "<string>",
"result_count": 123
}
}{
"code": 123,
"message": "<string>"
}Authorizations
OAuth2UserTokenUserToken
The access token received from the authorization server in the OAuth 2.0 flow.
Query Parameters
Required range:
1 <= x <= 100A comma separated list of Note fields to display. The fields available for a Note object.
Minimum array length:
1Available options:
id, info, scoring_status, status, test_result ⌘I
Search Community Notes Written
curl --request GET \
--url https://api.x.com/2/notes/search/notes_written \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.x.com/2/notes/search/notes_written"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.x.com/2/notes/search/notes_written', 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.x.com/2/notes/search/notes_written",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.x.com/2/notes/search/notes_written"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.x.com/2/notes/search/notes_written")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.x.com/2/notes/search/notes_written")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"info": {
"classification": "<string>",
"misleading_tags": [
"<string>"
],
"post_id": "<string>",
"rating_status": "<string>",
"text": "<string>",
"trustworthy_sources": true
},
"scoring_status": {
"has_access": true,
"rating_counts_per_model": [
{
"model_name": "<string>",
"value": {
"negative_factor_bucket_counts": {
"helpful_count": 123,
"helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"not_helpful_count": 123,
"not_helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"somewhat_helpful_count": 123
},
"neutral_factor_bucket_counts": {
"helpful_count": 123,
"helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"not_helpful_count": 123,
"not_helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"somewhat_helpful_count": 123
},
"positive_factor_bucket_counts": {
"helpful_count": 123,
"helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"not_helpful_count": 123,
"not_helpful_tag_counts": [
{
"tag_count": 123,
"tag_name": "<string>"
}
],
"somewhat_helpful_count": 123
}
}
}
]
},
"status": "<string>",
"test_result": {
"evaluation_outcome": [
{
"evaluator_score_bucket": "<string>",
"evaluator_type": "<string>"
}
]
}
}
],
"errors": [
{
"detail": "<string>",
"resource_type": "<string>",
"title": "<string>",
"type": "https://api.x.com/2/problems/resource-not-found",
"parameter": "<string>",
"resource_id": "<string>",
"status": 123,
"value": "<string>"
}
],
"meta": {
"next_token": "<string>",
"result_count": 123
}
}{
"code": 123,
"message": "<string>"
}