About this Cloud Hub Solution:
The AirSync API is a powerful tool that enables developers to access and manage Meta's model capabilities programmatically. It allows for task automation, custom integration, and scalable deployment of AI models, making it easier to build applications that leverage Meta's AI capabilities.
With AirSync, developers can send and receive data, make predictions, and fine-tune models, among other tasks.
API Conventions
The AirSync API is a collection of HTTP RPC-style methods that follow recognizable conventions. Here are some key details to keep in mind:
- All endpoints use HTTP POST methods and accept data via application/json request bodies.
- No data is accepted via query parameters.
- The naming convention for endpoints follows a specific pattern, such as localhost:8000/{VERSION}/{METHOD_FAMILY}/{METHOD_NAME} (e.g.,localhost:8000/v1/connections/create).
- For all update methods, the entire object must be passed in, including unchanged fields.
Authentication (OSS)
To authenticate with the Configuration API, you must use Basic Authentication. This involves setting the Authentication Header to Basic and base64 encoding the username and password (default values are airbyte and password).
The resulting header should read 'Authorization': "Basic YWlyYnl0ZTpwYXNzd29yZA==".