action asuarez_src_searchly_api_v1_controllers_similarity_by_content { label: "API endpoint to search similarity using content" description: "Endpoint for an end-user client to search similarity by content.\n\nIf you want to run the /similarity/by_content operation, you can do so via an HTTP POST command to the following URL:\n\n```\nhttps://searchly.asuarez.dev/api/v1/similarity/by_content\n```\n" provider: asuarez method: POST path: "/similarity/by_content" encoding: json input: { type: "object" properties: { content: { type: "string" description: "Content for searching similarity." } } } output: { type: "object" properties: { error: { type: "boolean" description: "Whether or not the request was successfully processed or not." } message: { type: "string" description: "Error message if the request was unsuccessful." } response: { type: "object" description: "Contains the response data if the request was successful." properties: { similarity_list: { type: "array" description: "Contains all the similarity items representing songs." items: { type: "object" description: "Song similarity item." properties: { artist_name: { type: "string" description: "Artist's song name." } artist_url: { type: "string" description: "Artist URL." } id: { type: "integer" description: "Song internal identifier." } index_id: { type: "integer" description: "Index internal identifier." } lyrics: { type: "string" description: "Song lyrics." } percentage: { type: "number" format: "float" description: "Similarity percentage." } song_name: { type: "string" description: "Song name." } song_url: { type: "string" description: "Song URL." } } } } } } } } }