Developer Quickstart
Make your first API request in minutes. Get to know about the basics of Segmind platform.
Step 1: Create a Free Account
Step 2: Use the playground to try different models
Step 3: Create an API key
Step 4: 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)Last updated