Community Notes
Search for Community Notes Written
Returns all the community notes written by the user.
GET
/
2
/
notes
/
search
/
notes_written
Search for 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": "1146654567674912769",
"post_id": "1346889436626259968",
"info": {
"misleading_tags": [],
"text": "<string>",
"trustworthy_sources": true,
"is_media_note": 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
}
}
}
},
"test_result": {
"evaluator_score_bucket": "<string>",
"evaluator_type": "<string>"
}
}
],
"errors": [
{
"title": "<string>",
"type": "<string>",
"detail": "<string>",
"status": 123
}
],
"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
If true, return the notes the caller wrote for the test. If false, return the notes the caller wrote on the product.
Pagination token to get next set of posts eligible for notes.
Max results to return.
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 Example:
[
"id",
"info",
"scoring_status",
"status",
"test_result"
]Response
The request has succeeded.
Minimum array length:
1Show child attributes
Show child attributes
Minimum array length:
1An HTTP Problem Details object, as defined in IETF RFC 7807 (https://tools.ietf.org/html/rfc7807).
- Option 1
- Option 2
- Option 3
- Option 4
- Option 5
- Option 6
- Option 7
- Option 8
- Option 9
- Option 10
- Option 11
- Option 12
- Option 13
- Option 14
- Option 15
- Option 16
- Option 17
- Option 18
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I
Search for 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": "1146654567674912769",
"post_id": "1346889436626259968",
"info": {
"misleading_tags": [],
"text": "<string>",
"trustworthy_sources": true,
"is_media_note": 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
}
}
}
},
"test_result": {
"evaluator_score_bucket": "<string>",
"evaluator_type": "<string>"
}
}
],
"errors": [
{
"title": "<string>",
"type": "<string>",
"detail": "<string>",
"status": 123
}
],
"meta": {
"next_token": "<string>",
"result_count": 123
}
}{
"code": 123,
"message": "<string>"
}