GET
/
2
/
notes
/
search
/
notes_written
curl --request GET \
  --url https://api.twitter.com/2/notes/search/notes_written \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "1146654567674912769",
      "info": {
        "classification": "misinformed_or_potentially_misleading",
        "misleading_tags": [
          "disputed_claim_as_fact"
        ],
        "text": "<string>",
        "trustworthy_sources": true
      },
      "post_id": "1346889436626259968",
      "status": "currently_rated_helpful",
      "test_result": true
    }
  ],
  "errors": [
    {
      "detail": "<string>",
      "status": 123,
      "title": "<string>",
      "type": "<string>"
    }
  ],
  "meta": {
    "next_token": "<string>",
    "result_count": 123
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

test_mode
boolean
required

If true, return the notes the caller wrote for the test. If false, return the notes the caller wrote on the product.

pagination_token
string

Pagination token to get next set of posts eligible for notes.

max_results
integer
default:10

Max results to return.

Required range: 1 <= x <= 100
note.fields
enum<string>[]

A comma separated list of Note fields to display.

Minimum length: 1
Example:
["id", "status", "test_result"]

Response

200
application/json

The request has succeeded.

The response is of type object.