> For the complete documentation index, see [llms.txt](https://docs.laravieira.me/mysiga/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.laravieira.me/mysiga/reference/load.md).

# /load

## Load Siga session

## Creates a new Siga session

<mark style="color:blue;">`GET`</mark> `https://mysiga.laravieira.me/load`

#### Cookies

| Name      | Type   | Description |
| --------- | ------ | ----------- |
| PHPSESSID | string | Session ID  |

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "challenge": "*",
    "captcha": null,
    "server": "*",
    "siga": "*",
    "client": "*"
}
```

{% endtab %}
{% endtabs %}

## Load Siga session with captcha

## Creates a new Siga session with captcha data

<mark style="color:blue;">`GET`</mark> `https://mysiga.laravieira.me/load/captcha`

#### Cookies

| Name      | Type   | Description |
| --------- | ------ | ----------- |
| PHPSESSID | string | Session ID  |

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "challenge": "*",
    "captcha": {
        "id": "*",
        "numbers": [0, 4],
        "tip": "Maybe just sum these two numbers?"
    },
    "server": "*",
    "siga": "*",
    "client": "*"
}
```

{% endtab %}
{% endtabs %}
