API Documentation

Integrate SecureVision AI's powerful image verification technology directly into your applications.

Getting Started

Authentication

All API requests require authentication using an API key. You can generate an API key in your dashboard.

Authorization: Bearer YOUR_API_KEY

Base URL

All API requests should be made to the following base URL:

https://api.securevision.ai/v1

API Endpoints

POST

/analyze

Analyze an image to determine if it's authentic or AI-generated.

Request

Send as multipart/form-data:

image: [binary image data]
confidence_threshold: 0.8 (optional, default: 0.7)

Response

Returns a JSON object with analysis results:

  • id: Unique identifier for the analysis
  • status: Status of the analysis (complete, processing, failed)
  • result: Object containing analysis results
  • metadata: Information about the analyzed image
POST

/batch

Analyze multiple images in a single request. Available for Pro and Enterprise users.

Request

Send as multipart/form-data:

images[]: [binary image data 1]
images[]: [binary image data 2]
...
options: JSON object with configuration options

GET

/results/:id

Retrieve the results of a previously analyzed image or batch.

Path Parameters

id: The ID of the image or batch analysis

Code Samples

JavaScript

Use the Fetch API to make requests to the SecureVision AI API:

  1. Create a FormData object and append the image
  2. Send a POST request to the /analyze endpoint with your API key in the Authorization header
  3. Parse the JSON response to get the analysis results

Python

Use the requests library to make requests to the SecureVision AI API:

  1. Open the image file in binary mode
  2. Create a files dictionary with the image data
  3. Send a POST request to the /analyze endpoint with your API key in the headers
  4. Parse the JSON response to get the analysis results

Ready to integrate?

Get started with SecureVision AI today and add powerful image verification capabilities to your application.