> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiriku.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get session status

Get the status of a mobile handoff session.

## Path Parameters

| Parameter   | Type     | Description                        |
| :---------- | :------- | :--------------------------------- |
| `sessionId` | `string` | L'identifiant unique de la session |

## Response

```json theme={null}
{
  "sessionId": "abc123def456",
  "status": "ready",
  "fileName": "document.pdf",
  "fileSize": 1048576,
  "fileType": "application/pdf",
  "uploadedAt": "2024-03-13T11:30:00Z",
  "expiresAt": "2024-03-13T12:00:00Z"
}
```

## Example

```bash theme={null}
# Remplacez 'sess_123456789' par un vrai sessionId obtenu de create-session
curl -X GET https://api.kiriku.app/v1/mobile-handoff/session/sess_123456789 \
  -H "Content-Type: application/json"
```

## Status Values

* `created` - Session créée, aucun fichier uploadé
* `uploading` - Upload en cours
* `ready` - Fichier prêt à être consommé
* `consumed` - Fichier déjà consommé
* `expired` - Session expirée
