# Genel Kullanımı

## Veri Şifreleme API

<mark style="color:blue;">`GET`</mark> `https://api.benegedeniz.com/crypt/v1/encrypt`

Bu API verilerinizi 18 farklı algoritma ile şifreleyebilmenize olanak tanır.

#### Query Parameters

| Name             | Type   | Description                  |
| ---------------- | ------ | ---------------------------- |
| encryption\_type | string | Şifreleme algoritmasının adı |
| data             | string | Şifrelenecek veri            |

{% tabs %}
{% tab title="200 Şifreleme başarılıdır." %}

```
{"status":"success","data":{"message":"Data successfully encrypted.","statusCode":2000,"encrypted_data":"ŞİFRELENMİŞVERİ"}}
```

{% endtab %}

{% tab title="400 " %}

```
{"status":"error","data":{"message":"Missing parameters.","statusCode":4000}}
```

{% endtab %}

{% tab title="404 Algoritma geçersiz veya desteklenmemektedir." %}

```
{"status":"error","data":{"message":"Invalid algorithm sent.","statusCode":4004}}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.benegedeniz.com/veri-sifreleme-api/genel-kullanimi.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
