Using the API
To effectively integrate the ForVoyez API into your application, it's essential to understand the request format, the required and optional parameters, and how to handle errors and responses. In this section, we'll cover these topics in detail.
Request Format
When making requests to the ForVoyez API, you'll need to send a POST
request to the /describe
endpoint with the following format:
- The
Authorization
header should include your API key as a Bearer token. - The
Content-Type
header should be set tomultipart/form-data
. - The request body should include the following form fields:
image
: The image file you want to generate metadata for (required)schema
: A JSON string specifying the desired output format (optional)keywords
: Comma-separated keywords to help with image analysis (optional)context
: Additional context about the image (optional)language
: Desired language for the output (optional, defaults to 'en')
Here's an example request using cURL and JavaScript:
curl -X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: multipart/form-data" \
-F "image=@/path/to/your/image.jpg" \
-F "schema={\"title\":\"string\",\"alternativeText\":\"string\",\"caption\":\"string\"}" \
-F "keywords=playful,kittens,flowers" \
-F "context=Playful kittens among blooming flowers" \
-F "language=en" \
https://forvoyez.com/api/describe
const form = new FormData()
form.append('image', fileInput.files[0])
form.append(
'schema',
JSON.stringify({
title: 'string',
alternativeText: 'string',
caption: 'string',
})
)
form.append('keywords', 'playful,kittens,flowers')
form.append('context', 'Playful kittens among blooming flowers')
form.append('language', 'en')
fetch('https://forvoyez.com/api/describe', {
method: 'POST',
headers: {
Authorization: 'Bearer YOUR_API_KEY',
},
body: form,
})
.then(response => response.json())
.then(data => {
console.log(data)
// Handle the API response data
})
.catch(error => {
console.error('Error:', error)
// Handle any errors that occurred during the request
})
Required and Optional Parameters
When making a request to the ForVoyez API, there are both required and optional parameters you can include:
-
Required parameters:
image
: The image file for which you want to generate metadata. This should be included as a file in the multipart/form-data request body.
-
Optional parameters:
schema
: A JSON string that specifies the desired output format for the generated metadata (e.g.,{"title":"string","alternativeText":"string"}
)keywords
: A comma-separated list of keywords to help guide the image analysiscontext
: Additional context or description about the image to assist in generating more accurate metadatalanguage
: Specifies the desired language for the metadata output (defaults to 'en')
If you don't provide the optional parameters, the API will use default values for metadata generation.
Error Handling and Responses
When making requests to the ForVoyez API, it's important to handle errors gracefully and understand the structure of the API responses. Here are a few things to keep in mind:
- Successful requests will return a
200 OK
status code along with a JSON response containing the generated metadata. - If there's an error with your request, such as missing required parameters or an invalid API key, the API will return an appropriate HTTP status code (e.g.,
400 Bad Request
,401 Unauthorized
) and a JSON error response with more details. - Make sure to catch and handle any errors in your application code to provide a smooth user experience.
Here's an example of a successful API response:
{
"title": "Playful Kittens Among Blooming Flowers",
"alternativeText": "Two animated kittens playing among blooming flowers with a clear blue sky",
"caption": "Adorable kittens having fun in a field of vibrant blossoms under the clear blue sky"
}
And here's an example of an error response:
{
"error": {
"code": 400,
"message": "Missing required parameter: image"
}
}
Next Steps
Now that you know how to make requests to the ForVoyez API, handle errors, and interpret the responses, you can explore further:
- Data Schemas: Learn how to customize and validate the metadata output schema.
- Limits and Quotas: Understand the request limits and how to handle quota overages.
- Code Examples: See code snippets in different programming languages to help you get started.
If you encounter any issues or have questions about using the API, don't hesitate to reach out to our support team for assistance.