Skip to main content
GET
/
twitter
/
following
/
status
Get Twitter Following Status
curl --request GET \
  --url https://api.memoryproto.co/twitter/following/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "in_progress",
  "progress": {
    "current": 1245,
    "total": 3632
  },
  "timestamp": "2025-05-09T19:51:32.016Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Use an authorization token prefixed with Bearer. You can get your API key at https://memoryproto.co/dashboard.

Example:

"Bearer mem_xxx"

Query Parameters

username
string
required

Twitter username of the user. For example, MemoryProtocol or factory__fm.

Minimum string length: 1
Examples:

"MemoryProtocol"

"factory__fm"

Response

Successful response containing the following indexing status.

status
required

Account follows fetch status: queued when the request is queued, in_progress while data is being fetched and partial results are available, andcompleted once all follows have been retrieved and are available.

Available options:
in_progress
Example:

"in_progress"

progress
object
required
Example:
{ "current": 1245, "total": 3632 }
timestamp
string | null
required

Timestamp of when the data was fetched, only available when the status is completed.

Example:

"2025-05-09T19:51:32.016Z"