Actions29
- Объявление Actions
- Автозагрузка Actions
- Продвижение Actions
- Рейтинги и Отзывы Actions
Overview
This node integrates with the Avito API, a popular Russian online classifieds platform, to perform various operations related to listings (Объявления), promotions, ratings, and autoload features. Specifically, for the resource "Объявление" (Item) and operation "Информация Об Объявлении" (Get Item Info), it retrieves detailed information about a specific listing on Avito.
Typical use cases include:
- Fetching up-to-date details of a particular classified ad by its unique ID.
- Automating monitoring or analysis of listings for business intelligence.
- Integrating Avito listing data into other workflows or systems for further processing.
Example: A user wants to automatically retrieve the current status and details of their posted ad on Avito to update their internal database or trigger notifications.
Properties
| Name | Meaning |
|---|---|
| ID Пользователя | The numeric user ID on Avito who owns or manages the listing. |
| ID Объявления | The unique numeric identifier of the Avito listing (ad) to fetch information about. |
Output
The node outputs JSON data representing the detailed information of the specified Avito listing. This includes all relevant fields returned by the Avito API for that item, such as title, description, price, status, and other metadata.
If an error occurs during the API call, the output JSON will contain an error field with the error message.
No binary data output is produced by this operation.
Dependencies
- Requires an API authentication credential configured in n8n to access the Avito API.
- The node depends on internal routing utilities (
RouterUtils) to handle the specific operation calls. - No additional external dependencies beyond the Avito API and proper OAuth2 credentials are needed.
Troubleshooting
Common issues:
- Invalid or missing user ID or item ID parameters will cause the API call to fail.
- Authentication errors if the API key or OAuth token is not properly configured.
- Network or API downtime can result in request failures.
Error messages:
"Unknown resource: ..."indicates the resource parameter is incorrect or unsupported.- Errors returned from the Avito API will be passed through in the
errorfield of the output JSON.
Resolutions:
- Verify that the user ID and item ID are correct and correspond to existing entities on Avito.
- Ensure the API credentials are valid and have necessary permissions.
- Use the node's "Continue On Fail" option to handle errors gracefully within workflows.
Links and References
- Avito API Documentation (in Russian)
- n8n Documentation on Creating Custom Nodes
- OAuth2 Authentication concepts for API access in n8n