--- layout: m1x_rest title: Resources ---
The Magento REST API allows you to manage customers, customer addresses, sales orders, inventory, and products. REST API is organized into the following categories:
Retrieve the list of products, create, update, delete a product.
Resource Structure: http://magentohost/api/rest/products
Retrieve the list of categories assigned to a product, assign and unassign the category from a product.
Resource Structure: http://magentohost/api/rest/products/:id/categories
Retrieve the list of images assigned to a product, add, update, remove an image to/from a product.
Resource Structure: http://magentohost/api/rest/products/:id/images
Retrieve the list of websites assigned to a product, assign, unassign a website to/from a product.
Resource Structure: http://magentohost/api/rest/products/:id/websites
Retrieve the list of customers, create, delete a customer, and update the customer information.
Resource Structure: http://magentohost/api/rest/customers
Retrieve the list of customer addresses, create, update, and delete the customer address.
Resource Structure: http://magentohost/api/rest/customers/:id/addresses
Retrieve the list of stock items, update required stock items.
Resource Structure: http://magentohost/api/rest/stockitems
Retrieve the list of sales orders with detailed information on order addresses, items, and comments.
Resource Structure: http://magentohost/api/rest/orders
Retrieve information on order billing and shipping addresses.
Resource Structure: http://magentohost/api/rest/orders/:id/addresses
Retrieve information on the specified order comments.
Resource Structure: http://magentohost/api/rest/orders/:id/comments
Retrieve information on specified order items.
Resource Structure: http://magentohost/api/rest/orders/:id/items