GetXAPI
Articles

Delete Article

Permanently delete a Twitter/X article entity (draft or published). $0.005 per call. GetXAPI article endpoint.

POST/twitter/article/delete

This endpoint costs $0.005 per API call.

Deletes an article entity (draft or published).

Request Body

FieldTypeRequiredDescription
auth_tokenstringYesUser's auth token
article_idstringYesArticle id
proxystringNoYour proxy URL

Notes

  • If you've already published the article, this deletes the article entity but the wrapper tweet may remain on the timeline. Call /article/unpublish first to clean both up.

Response (200)

{
  "status": "success",
  "msg": "Article deleted",
  "data": { "article_id": "2055606612363202560" }
}

Examples

curl -X POST "https://api.getxapi.com/twitter/article/delete" \
  -H "Authorization: Bearer API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "auth_token": "your_auth_token",
    "article_id": "2055606612363202560"
  }'

On this page