Get post replies/comments

Fetch all comments/replies for a specific post from a social media account.

GET/v1/posts/{id}/replies

Path Parameters

idstring

Query Parameters

networkstring

Social network name (e.g., 'x', 'threads')

Length1 <= length
usernamestring

Username or nickname of the social account

Length1 <= length

Response Body

curl -X GET "https://api.outstand.so/v1/posts/string/replies?network=x&username=mycompany"
{
  "success": true,
  "replies": [
    {
      "id": "x_123456789_1704067200000",
      "author": "johndoe",
      "text": "Great post!",
      "created_at": "2025-01-15T10:30:00Z",
      "platform_specific": {}
    }
  ]
}
{
  "success": false,
  "error": "Invalid payload",
  "details": {
    "content": {
      "_errors": [
        "Required"
      ]
    }
  }
}
{
  "success": false,
  "error": "Invalid payload",
  "details": {
    "content": {
      "_errors": [
        "Required"
      ]
    }
  }
}
{
  "success": false,
  "error": "Invalid payload",
  "details": {
    "content": {
      "_errors": [
        "Required"
      ]
    }
  }
}
{
  "success": false,
  "error": "Internal server error",
  "message": "Database connection failed"
}