Walmart Syphoon API Documentation
Overview
The Walmart Syphoon API enables developers to access Walmart Product Pages, along with seller information.
This documentation covers endpoints, authentication, rate limits, error handling, and best practices, with general structures and detailed examples for API responses.
Endpoint
- URL:
https://api.syphoon.com
- Method:
POST
- Sample POST Body for API URL:
{
"url": "https://www.walmart.com/ip/Call-of-Duty-Black-Ops-6-for-Xbox-Series-S-X/5944692193",
"key": "SYPHOON_KEY",
"method": "GET"
}
Sample Code
curl --location 'https://api.syphoon.com/' --header 'Content-Type: application/json' --data '{
"url": "https://www.walmart.com/ip/Call-of-Duty-Black-Ops-6-for-Xbox-Series-S-X/5944692193",
"key": "SYPHOON_KEY",
"method": "GET"
}'
The response will be HTML returned by Walmart
Please note that the Walmart Product URL should not have any query params. So, URLs like
https://www.walmart.com/ip/Call-of-Duty-Black-Ops-6-for-Xbox-Series-S-X/5944692193?from=search
is invalid. You will need to remove ?from=search from the URL to get a valid URL.
The response will be a JSON. The response schema is:
{
"html": product_html,
"parsed_data": parsed_data,
"seller_details: seller_info
}
Authentication
Each request requires an API key in the POST data, provided upon subscription to the Syphoon service. The API key must be included in every request to authenticate the user.
Rate Limits
The rate limits applied to each user are custom and based on the subscription plan chosen. You should not cross the concurrency you have been assigned because you will get a “Too many requests” error.
Response Structure & Status Codes
For successful responses, you will get the HTML as returned by the Walmart website. The Status Code will be 200 for these responses. For failed responses, the Status Code can be 4xx or 5xx.
- Status Code 404: will be returned when the provided URL is incorrect (404 requests will be charged, so make sure of the URLs).
- Status Code 429: will be returned when concurrency limits are breached.
- Status Code 400: will be returned if target website does not send a valid response (these will be charged).
- Status Code 5xx: willl be sent for server errors.
We request you to check the Status Code before trying to parse the response. You will only be charged for responses with Status Codes 200, 400, and 404.
Support
For any help or assistance, please don’t hesitate to reach out to support@syphoon.com
, and we will be glad to help you.