# Manual Execution

Binary version:

```bash
./pandora_api_requests -u <url objetive> -m <method> -hd <heading of the petition> -d <data of petition> -md <mode of requests> --comparison-value <The value to compare> --condition <If match the condition the value> --down_codes <status code to compare> -v <verbosity show raw value on terminal> --json-path <Word to search in the json>
```

The plugin is managed depending on the **requests** mode to return the raw JSON response or the status code in a simple way, and the **server\_plugin** mode designed for integration.

**Requests** Mode:

```bash
./pandora_api_requests -u https://jsonplaceholder.typicode.com/posts/1 -m get -md requests -v
```

[![image.png](https://pandorafms.com/guides/public/uploads/images/gallery/2025-10/scaled-1680-/sTjimage.png)](https://pandorafms.com/guides/public/uploads/images/gallery/2025-10/sTjimage.png)

**Server\_plugin** Mode:

```
./pandora_api_requests -u https://jsonplaceholder.typicode.com/posts/1 -m get -md server_plugin --json-path "$.userId"  --condition "is_equal_to" --comparison-value "1" -v
```

[![image.png](https://pandorafms.com/guides/public/uploads/images/gallery/2025-10/scaled-1680-/V3Limage.png)](https://pandorafms.com/guides/public/uploads/images/gallery/2025-10/V3Limage.png)