Step 1 - Get a temporary token curl -X POST -H "Content-Type: application/json" -d '{"secret_key":"your_api_key"}' https://api.eyepop.ai/authentication/token Step 2 - Get Your Pop Config curl -X GET -H "Accept: application/json" -H "Authorization: Bearer your_token" https://api.eyepop.ai/pops//config?auto_start=true Step 3a - Post an Image or Video and get results synchronously curl -X POST -H "Accept: application/json" -H "Authorization: Bearer your_token" -F "file=@path_to_your_file" https://api.eyepop.ai/pipelines//source?mode=preempt&processing=sync Step 3b - Post an URL to an Image or Video and get results synchronously curl -X PATCH -H "Accept: application/json" -H "Authorization: Bearer your_token" -d '{"sourceType":"URL","url":"image_url"}' https://api.eyepop.ai/pipelines//source?mode=preempt&processing=async See: https://docs.eyepop.ai/developer-documentation/api for more ways to analyze media