### FuzzySearch API Endpoints Source: https://api-next.fuzzysearch.net/swagger-ui/index This section details the available API endpoints for the FuzzySearch service, covering database operations, file lookups, and image searching functionalities. ```APIDOC fuzzysearch-api: description: FuzzySearch image search API crate: description: Crate related operations GET /v1/dump/latest: description: Get the URL of the latest FuzzySearch database dump. parameters: [] responses: 200: OK GET /v1/file/furaffinity: description: Get information about a file on FurAffinity. parameters: - name: id in: query description: The ID of the file on FurAffinity. required: true schema: type: string responses: 200: OK GET /v1/handle/{service}: description: Check if a handle is being indexed for a given service. parameters: - name: service in: path description: The service name (e.g., 'twitter', 'furaffinity'). required: true schema: type: string - name: handle in: query description: The handle to check. required: true schema: type: string responses: 200: OK GET /v1/hashes: description: Search for images by hashes. parameters: - name: hashes in: query description: A comma-separated list of image hashes. required: true schema: type: string responses: 200: OK POST /v1/image: description: Search for images by image upload. requestBody: content: multipart/form-data: schema: type: object properties: file: type: string format: binary responses: 200: OK GET /v1/url: description: Search for images by image available at URL. parameters: - name: url in: query description: The URL of the image. required: true schema: type: string responses: 200: OK Schemas: FurAffinityFile: type: object properties: id: { type: string } name: { type: string } url: { type: string } Image: type: object properties: id: { type: string } url: { type: string } hashes: { type: array, items: { type: string } } rating: { type: string } source: { type: string } ImageError: type: object properties: message: { type: string } Rating: type: string enum: [safe, questionable, explicit] SearchResult: type: object properties: image: { $ref: '#/components/schemas/Image' } score: { type: number } Service: type: string enum: [furaffinity, twitter] SiteInfo: type: object properties: name: { type: string } url: { type: string } UrlError: type: object properties: message: { type: string } url: { type: string } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.