Skip to main content
Anyoutfit’s API allows developers and brands to integrate AI-driven virtual outfit styling and photoshoot generation. Create personalized styling experiences with cutting-edge technology, and give your users the ability to generate professional photoshoots instantly. Empower your app with Anyoutfit’s API! With our API, you can:
  • Generate virtual outfits based on user preferences
  • Create professional-quality photoshoots with AI-generated models
  • Customize styling options for various occasions and body types
  • Integrate personalized fashion recommendations into your platform

Authentication

All API endpoints are authenticated using Token authentication. You must include an API token in the Authorization header for all requests. An Authorization is a string of the form “Token YOUR_API_TOKEN”.

To Get Your Token

  1. Log in to your dashboard
  2. Navigate to the “Access Token” section
  3. Generate a new token

To Use Your Token

Include your token in the Authorization header of your API requests as follows:
headers = {
  "Authorization": "Token YOUR_API_TOKEN",
  "accept": "application/json",
  "content-type": "application/json"
}
Replace YOUR_API_TOKEN with the actual token you have generated. If your generated token is ‘AjjhfI30884KNNsuu40975N’, your header becomes:
headers = {
  "Authorization": "Token AjjhfI30884KNNsuu40975N",
  "accept": "application/json",
  "content-type": "application/json"
}