Parcel Public API v2
  • Homepage
  • Discord Server
  • Customer Support
  • 🔑Obtain API Key
    • Create an API Key
    • Developer Portal
  • 🏢Hub Endpoints
    • Fetch Hub Information
    • Update Hub Information
  • 🛍️Product Endpoints
    • Fetch Product Information
    • Create a new Product
    • Update an existing Product
    • Delete an existing Product
  • 📝Whitelist Endpoints
    • Check Whitelist
    • Give Whitelist
    • Transfer Whitelist
    • Revoke Whitelist
Powered by GitBook
On this page

Was this helpful?

  1. Product Endpoints

Fetch Product Information

Retrieve information from a Product

Retrieve detailed information of a specific product within your Hub. This endpoint provides a comprehensive view of a product's attributes, aiding in accurate data representation and management.

Retrieve information from a Product (or list all products)

GET https://v2.parcelroblox.com/products/:product_id

Path Parameters

Name
Type
Description

product_id*

string

Product ID or put "all" to return all products within your Hub

Headers

Name
Type
Description

Authorization*

string

prod_DGzVhVsrqNJi4b0Chd9mMPUI9

Content-Type

string

application/json

If everything was able to process properly (specific product):

{ "status": "200", "message": "OK", "data": object }

If everything was able to process properly (all products):

{ "status": "200", "message": "OK", "data": { "amount": number, "products": array } }

If something was wrong on our end:

{ "status": "500", "message": "Internal Server Error" }

If you provided an invalid authorization key:

{ "status": "401", "message": "Invalid authorization key." }

If you did not provide an authorization key:

{ "status": "401", "message": "No authorization key was provided." }
PreviousUpdate Hub InformationNextCreate a new Product

Last updated 11 months ago

Was this helpful?

🛍️