API Reference
Welcome to the Segmind API Docs! This guide will help you get started with using our REST APIs.
Authentication
Create an API key
Use the API
curl --location 'https://api.segmind.com/v1/instantid' \
--header 'x-api-key: YOUR-API-KEY' \
--header 'Content-Type: application/json' \
--data '{
}'import requests
api_key = "YOUR-API-KEY"
url = "https://api.segmind.com/v1/face-to-sticker"
# Request payload
data = {
}
response = requests.post(url, json=data, headers={'x-api-key': api_key})
print(response)APIs
Endpoints
API error codes
Postman Collection
Last updated