Use this dashboard to manage account-level API access, inspect endpoint contracts, test webhook-ready automation setups, and review recent async task activity without leaving the browser.
curl -X POST 'https://snipinsta.app/api/wordpress-plugin/auth/validate' \ + -H 'Accept: application/json' \ + -F "api_key=YOUR_API_KEY"
curl -X POST 'https://snipinsta.app/api/wordpress-plugin/usage/report' \ + -H 'Accept: application/json' \ + -F "api_key=YOUR_API_KEY" \ + -F 'tool=rm-bg' \ + -F 'count=1'
curl -X POST 'https://snipinsta.app/api/processing-tasks/rm-bg' \ + -H 'Accept: application/json' \ + -H 'X-API-Key: YOUR_API_KEY' \ + -F 'image=@/absolute/path/to/source.png' \ + -F 'webhook_url=https://example.com/hooks/snipinsta' \ + -F 'webhook_events[]=succeeded' \ + -F 'webhook_secret=shared-secret'
curl -H 'X-API-Key: YOUR_API_KEY' 'https://snipinsta.app/api/processing-tasks/TASK_ID/status' # then download curl -L -H 'X-API-Key: YOUR_API_KEY' 'https://snipinsta.app/api/processing-tasks/TASK_ID/result' -o result.bin
{
"event": "processing-task.succeeded",
"task_id": "TASK_ID",
"endpoint": "rm-bg",
"status": "succeeded",
"status_url": "https://snipinsta.app/api/processing-tasks/TASK_ID/status",
"result_url": "https://snipinsta.app/api/processing-tasks/TASK_ID/result",
"output_filename": "result.png"
}
This dashboard is useful when you need a fast view of the current API contract, want to rotate credentials without opening the database, or need a repeatable webhook configuration for async image-processing jobs.
Was this helpful?
Your feedback improves our tools