Apilogy logo
HomeExplore APIsBlog
logologo

GET IN TOUCH

Contact UsPartner With UsAbout Us

SUPPORT

Apilogy DocumentationBlogFAQ

LEGAL

Terms and ConditionsPrivacy Policy

FOLLOW US

logologo

Copyright © 2025 Apilogy. All rights reserved.

Face Embedding API memungkinkan pengembang untuk mengekstrak representasi vektor berdimensi tinggi (penyematan) wajah manusia dari gambar. Penyematan ini dapat digunakan untuk berbagai tugas pengenalan wajah, termasuk pencocokan wajah, pengelompokan, dan verifikasi.

Current Max Capacity : 40 Request Per Second

Contoh Penggunaan

Python Example

import requests

url = "https://telkom-ai-dag.api.apilogy.id/Face_Embedding/0.0.2/v1"

headers = {
    "accept": "application/json",
    "x-api-key": "YOUR_API_KEY"  # Masukkan API Key kamu
}

file_path = "Contoh.jpg"  # Ganti dengan nama file lokal kamu

with open(file_path, "rb") as f:
    files = {
        "file": (file_path, f, "image/jpeg")
    }
    response = requests.post(url, headers=headers, files=files)

print("Status code:", response.status_code)
print("Response:", response.json())

cURL Example

curl --request POST \
  --url https://telkom-ai-dag.api.apilogy.id/Face_Embedding/0.0.2/v1 \
  --header 'Content-Type: multipart/form-data' \
  --header 'accept: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --form [email protected]

Latency

280 ms

Throughput

< 0.1 rpm

Basepath

/Face_Embedding/0.0.2

Host

telkom-ai-dag.api.apilogy.id

Schemes

HTTP, HTTPS

Supported Authentication

key-auth

Servers

http://telkom-ai-dag.api.apilogy.id/Face_Embedding/0.0.2
https://telkom-ai-dag.api.apilogy.id/Face_Embedding/0.0.2

Find Out More

Home / Explore / Face_Embedding
Publisher Icon

Face Embedding

Category: AI/Machine Learningby telkom_ai_dag
Version IconVersion0.0.2