Get a phrase for word order reconstruction game.
Returns full Russian phrase, French phrase, and shuffled words including a distractor.

GET /api/word-pairs/phrase_reconstruction/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "word_pair": {
        "id": 396,
        "french_word": "je fais",
        "russian_word": "я делаю",
        "category": "phrase",
        "category_display": "Phrase",
        "level": 5,
        "level_display": "Small Phrases",
        "comment": "I'm doing",
        "tags": [],
        "created_at": "2026-01-17T18:41:48.275894Z",
        "updated_at": "2026-01-17T18:41:48.275907Z",
        "is_active": true
    },
    "french_phrase": "je fais",
    "russian_phrase": "я делаю",
    "shuffled_words": [
        "это",
        "я",
        "делаю"
    ],
    "correct_order": [
        1,
        2
    ],
    "distractor_index": 0
}