Segmind Docs
WebsiteConsole
  • Segmind Developer Platform
    • Developer Quickstart
    • Key Concepts
    • Support
    • Authentication
    • Pricing and Billing
    • Flux Fine Tuning
      • Flux fine Tuning API
      • Flux Pro fine tuning API
      • Fine tuning GPU options
    • Webhooks
    • Teams
    • Account and Developer Settings
  • API Reference
    • Model Status
    • Rate Limits
    • Account and Billing APIs
    • Premium models
    • Monitoring
    • Logging
    • Random Seed
  • PixelFlow
    • Getting Started
    • PixelFlow Components
    • PixelFlow Operations
    • Templates
    • Workflow to API
  • Model Hub
  • Dedicated Endpoints
    • Getting started
    • Endpoint APIs
Powered by GitBook
On this page
  1. Segmind Developer Platform

Developer Quickstart

Make your first API request in minutes. Get to know about the basics of Segmind platform.

PreviousSegmind Developer PlatformNextKey Concepts

Last updated 1 month ago

Step 1: Create a Free Account

Head over to the website and sign up for a free account. You can simply connect with your Google or Discord account.

Step 2: Use the playground to try different models

Navigate to any from the model page to run a model. You'll see an example that you can try or feel free to tweak the prompts and other settings to get the best output for you.

Step 3: Create an API key

The Segmind Serverless API uses API keys for authentication. To create one, login to your account and head to the on the dashboard.

Step 4: Use the API

You can authenticate by including your Segmind API key in the x-api-key section of the request.

Example cURL request:

curl --location 'https://api.segmind.com/v1/instantid' \
--header 'x-api-key: YOUR-API-KEY' \
--header 'Content-Type: application/json' \
--data '{
    }'

Example python request

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)
Segmind.com
model
API Keys page