# Vision Check API

The Compass Vision API provides users with an endpoint to analyze an image by submitting its URL, returning a confidence score indicating whether the image is a deep fake or AI-generated. Upon submitting the image URL, the API processes it using advanced AI detection algorithms to evaluate features commonly associated with manipulated or synthetically generated visuals. 

The response will include a confidence score, where a higher score indicates a higher likelihood that the image is a deep fake or AI-generated. This API is ideal for use in content moderation, authenticity verification, and media analysis tools.

You can try these out in your browser with the [OpenAPI Spec](https://api.blackbird.ai/compass/openapi/#/VisionAnalyses). Be sure to hit "Authorize 🔓" and enter your credentials first.

<b>An API for checking the context and authenticity of visual assets and managing those visionAnalyses</b>


## Servers

```
https://api.blackbird.ai/compass
```

## Security

### oAuth2Password

Type: oauth2
Token URL: https://api.blackbird.ai/compass/token
Scopes:

### clientCredentials

Type: oauth2

## Download OpenAPI description

[Vision Check API](https://docs.blackbird.ai/_bundle/vision.yaml)

## Other

### Create a new vision analysis

 - [POST /visionAnalyses](https://docs.blackbird.ai/vision/other/createvisionanalysis.md): Creates a new vision analysis. The resource isn't fully created immediately and you'll want to poll the /visionAnalyses/{id} GET for the result.

### Gets all the vision analyses the caller has submitted.

 - [GET /visionAnalyses](https://docs.blackbird.ai/vision/other/getvisionanalyses.md): Note that the result is eventually consistent with creation of a visionAnalysis, so you might not read your own write when you query for all visionAnalyses

### Get input and analysis

 - [GET /visionAnalyses/{id}](https://docs.blackbird.ai/vision/other/getvisionanalysis.md): Retrieves the vision analysis with the input and the generated analysis around it

