AI QR kodları
GET https://qrcodedynamic.com/api/ai-qr-codes/
curl --request GET \
--url 'https://qrcodedynamic.com/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodedynamic.com/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
| Parametreler | Ayrıntılar | Açıklama |
|---|---|---|
| page | İsteğe Bağlı Tamsayı | Sonuç almak istediğiniz sayfa numarası. Varsayılan olarak 1. |
| results_per_page | İsteğe Bağlı Tamsayı | Sayfa başına kaç sonuç istersiniz. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Varsayılan değer 25. |
{
"data": [
{
"id": 1,
"name": "Example name",
"ai_qr_code": "https://qrcodedynamic.com/uploads/ai_qr_codes/example.png",
"content": "https://qrcodedynamic.com/",
"prompt": "Gün batımında doğa manzarası, şelale, vahşi hayvanlar ve güneş ışınları"
"embedded_data": "https://qrcodedynamic.com/",
"embedded_data": "https://example.com",
"last_datetime": null,
"datetime": "2025-10-30 15:19:12"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://qrcodedynamic.com/api/ai-qr-codes?&page=1",
"last": "https://qrcodedynamic.com/api/ai-qr-codes?&page=1",
"next": null,
"prev": null,
"self": "https://qrcodedynamic.com/api/ai-qr-codes?&page=1"
}
}
GET https://qrcodedynamic.com/api/ai-qr-codes/{ai_qr_code_id}
curl --request GET \
--url 'https://qrcodedynamic.com/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodedynamic.com/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"name": "Example name",
"ai_qr_code": "https://qrcodedynamic.com/uploads/ai_qr_codes/example.png",
"content": "https://qrcodedynamic.com/",
"prompt": "Gün batımında doğa manzarası, şelale, vahşi hayvanlar ve güneş ışınları"
"embedded_data": "https://qrcodedynamic.com/",
"last_datetime": null,
"datetime": "2025-10-30 15:19:12"
}
}
POST https://qrcodedynamic.com/api/ai-qr-codes
| Parametreler | Ayrıntılar | Açıklama |
|---|---|---|
| link_id | İsteğe Bağlı Tamsayı | - |
| project_id | İsteğe Bağlı Tamsayı | - |
| name | Gerekli String | - |
| content | Gerekli String | - |
| prompt | Gerekli String | - |
| Parametreler | Ayrıntılar | Açıklama |
|---|---|---|
curl --request POST \
--url 'https://qrcodedynamic.com/api/ai-qr-codes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'prompt=Gün batımında doğa manzarası, şelale, vahşi hayvanlar ve güneş ışınları' \
--form 'content=https://qrcodedynamic.com/' \
--url 'https://qrcodedynamic.com/api/ai-qr-codes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'prompt=Gün batımında doğa manzarası, şelale, vahşi hayvanlar ve güneş ışınları' \
--form 'content=https://qrcodedynamic.com/' \
{
"data": {
"id": 1
}
}
POST https://qrcodedynamic.com/api/ai-qr-codes/{ai_qr_code_id}
| Parametreler | Ayrıntılar | Açıklama |
|---|---|---|
| link_id | İsteğe Bağlı Tamsayı | - |
| project_id | İsteğe Bağlı String | - |
| name | İsteğe Bağlı String | - |
| content | İsteğe Bağlı String | - |
| prompt | İsteğe Bağlı String | - |
curl --request POST \
--url 'https://qrcodedynamic.com/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
--url 'https://qrcodedynamic.com/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
{
"data": {
"id": 1
}
}
DELETE https://qrcodedynamic.com/api/ai-qr-codes/{ai_qr_code_id}
curl --request DELETE \
--url 'https://qrcodedynamic.com/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodedynamic.com/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \