العودة إلى نظرة API

uuid

POST1 رصيد

Returns a batch of cryptographically random UUIDs. The same input always produces the same count, but the values themselves are unique per call.

نقطة النهاية

POST https://x114.org/api/v1/uuid

جسم الطلب

أرسل كـ JSON في جسم POST.

NameTypeRequiredDescription
countnumberoptionalHow many UUIDs to generate (1-500). Defaults to 1.
uppercasebooleanoptionalReturn uppercase hex digits. Defaults to false.

جسم الاستجابة

JSON المُعاد عند النجاح (HTTP 200).

NameTypeRequiredDescription
okbooleanrequiredTrue on success.
countnumberrequiredThe number of UUIDs returned.
uppercasebooleanrequiredWhether the output is uppercased.
uuidsstring[]requiredThe generated UUIDs in canonical 8-4-4-4-12 form.

مثال

curl -X POST https://x114.org/api/v1/uuid \
  -H "Authorization: Bearer sk_..." \
  -H "Content-Type: application/json" \
  -d '{"count":3,"uppercase":false}'
جرّب في المتصفح

الأداة المجانية تعطيك نفس النتيجة دون كتابة أي شفرة.

افتح الأداة