Reading list Switch to dark mode

    Magento 2 API – Beginners Guide for API development

    Updated 12 September 2023

    Magento 2 API – Today we are going to learn how to create rest based api in magento 2. I have worked on magento 1 and found it very difficult to create a rest webapi, but as I was expecting magento2 has a very easy way to define your api resources for the module, specially defining routes.

    Also, check how to create GraphQL API in Magento 2

    In order to create a rest api there are some certain requirements :

    • you need to create an interface in your module’s Api folder.
    • then you need to define all the api methods that you want to expose to the web in the interface.
    • all the methods should have a doc-block.
    • in the doc-block @api must be defined
    • if your method expects parameters than all the parameters must be defined in the doc-block as @params <type> <param> <description>
    • return type of the method must be defined as @return <type> <description>
    • concrete class of the method must be defined and it should give the definition of all the api methods and should inherit the doc-block.

    If your api method do not met any of the above requirements then rest api will not work.

    Now for an example lets create a test module named Webkul_TestApi for better understanding :

    Searching for an experienced
    Magento 2 Company ?
    Read More

    create your module composer.json, registration.php and module.xml files:

    <?php
    /**
    * Webkul Software.
    *
    * @category Webkul_MpApi
    *
    * @author Webkul
    * @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
    * @license https://store.webkul.com/license.html
    */
    \Magento\Framework\Component\ComponentRegistrar::register(
        \Magento\Framework\Component\ComponentRegistrar::MODULE,
        'Webkul_TestApi',
        __DIR__
    );
    
    {
        "name": "webkul/marketplace-api",
        "description": "Marketplace api for magento2",
        "require": {
            "php": "~5.5.0|~5.6.0|~7.0.0",
            "magento/module-config": "100.0.*",
            "magento/module-store": "100.0.*",
            "magento/module-checkout": "100.0.*",
            "magento/module-catalog": "100.0.*",
            "magento/module-sales": "100.0.*",
            "magento/module-customer": "100.0.*",
            "magento/module-payment": "100.0.*",
            "magento/module-quote": "100.0.*",
            "magento/module-backend": "100.0.*",
            "magento/module-directory": "100.0.*",
            "magento/module-theme": "100.0.*",
            "magento/framework": "100.0.*"
            
        },
        "type": "magento2-module",
        "version": "2.0.0",
        "license": [
            "proprietary"
        ],
        "autoload": {
            "files": [
                "registration.php"
            ],
            "psr-4": {
                "Webkul\\TestApi\\": ""
            }
        }
    }
    <?xml version="1.0"?>
    
    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
        <module name="Webkul_TestApi" />
    </config>

    Now create TestApiManagementInterface.php file in app/code/Webkul/TestApi/Api/ folder:

    <?php
    
    namespace Webkul\TestApi\Api;
    
    interface TestApiManagementInterface
    {
        /**
         * get test Api data.
         *
         * @api
         *
         * @param int $id
         *
         * @return \Webkul\TestApi\Api\Data\TestApiInterface
         */
        public function getApiData($id);
    }
    

    the above will define all the api methods you want to expose, all these methods must have doc-block defined with @api, @param and @return else it will not work.

    Now create TestApiManagementInterface implementation file in app/code/Webkul/TestApi/Model/Api folder:

    <?php
    
    namespace Webkul\TestApi\Model\Api;
    
    class TestApiManagement implements \Webkul\TestApi\Api\TestApiManagementInterface
    {
        const SEVERE_ERROR = 0;
        const SUCCESS = 1;
        const LOCAL_ERROR = 2;
    
        protected $_testApiFactory;
    
        public function __construct(
            \Webkul\TestApi\Model\TestApiFactory $testApiFactory
    
        ) {
            $this->_testApiFactory = $testApiFactory;
        }
    
        /**
         * get test Api data.
         *
         * @api
         *
         * @param int $id
         *
         * @return \Webkul\TestApi\Api\Data\TestApiInterface
         */
        public function getApiData($id)
        {
            try {
                $model = $this->_testApiFactory
                    ->create();
    
                if (!$model->getId()) {
                    throw new \Magento\Framework\Exception\LocalizedException(
                        __('no data found')
                    );
                }
    
                return $model;
            } catch (\Magento\Framework\Exception\LocalizedException $e) {
                $returnArray['error'] = $e->getMessage();
                $returnArray['status'] = 0;
                $this->getJsonResponse(
                    $returnArray
                );
            } catch (\Exception $e) {
                $this->createLog($e);
                $returnArray['error'] = __('unable to process request');
                $returnArray['status'] = 2;
                $this->getJsonResponse(
                    $returnArray
                );
            }
        }
    }
    

    the above class is the implementation of the interface as you can see I have only created one method getApiData as it is defined in the interface its return type is \Webkul\TestApi\Api\Data\TestApiInterface class so now we have to create this class and its implementation too.

    Now create a model TestApi.php inside app/code/Webkul/TestApi/Model, this is a fake model it is not connected to any table since its only for testing purpose, I have just defined some setters and getters for some fields.

    <?php
    
    namespace Webkul\TestApi\Model;
    
    /**
     * Marketplace Product Model.
     *
     * @method \Webkul\Marketplace\Model\ResourceModel\Product _getResource()
     * @method \Webkul\Marketplace\Model\ResourceModel\Product getResource()
     */
    class TestApi  implements \Webkul\TestApi\Api\Data\TestApiInterface
    {
        /**
         * Get ID.
         *
         * @return int
         */
        public function getId()
        {
            return 10;
        }
    
        /**
         * Set ID.
         *
         * @param int $id
         *
         * @return \Webkul\Marketplace\Api\Data\ProductInterface
         */
        public function setId($id)
        {
        }
    
        /**
         * Get title.
         *
         * @return string|null
         */
        public function getTitle()
        {
            return 'this is test title';
        }
    
        /**
         * Set title.
         *
         * @param string $title
         *
         * @return \Webkul\Marketplace\Api\Data\ProductInterface
         */
        public function setTitle($title)
        {
        }
    
        /**
         * Get desc.
         *
         * @return string|null
         */
        public function getDescription()
        {
            return 'this is test api description';
        }
    
        /**
         * Set Desc.
         *
         * @param string $desc
         *
         * @return \Webkul\Marketplace\Api\Data\ProductInterface
         */
        public function setDescription($desc)
        {
        }
    }
    
    

    the above class has getTitle, getDescription and getId so we must expect that API will return these values in the response.

    Now create the interface class for the above implementation in app/code/Webkul/TestApi/Api/Data.

    <?php
    /**
     * Webkul Software.
     *
     * @category  Webkul
     *
     * @author    Webkul
     * @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
     * @license   https://store.webkul.com/license.html
     */
    
    namespace Webkul\TestApi\Api\Data;
    
    /**
     * Marketplace product interface.
     *
     * @api
     */
    interface TestApiInterface
    {
        /**#@+
         * Constants for keys of data array. Identical to the name of the getter in snake case
         */
        const ENTITY_ID = 'entity_id';
    
        const TITLE = 'title';
    
        const DESC = 'description';
        /**#@-*/
    
        /**
         * Get ID.
         *
         * @return int|null
         */
        public function getId();
    
        /**
         * Set ID.
         *
         * @param int $id
         *
         * @return \Webkul\Marketplace\Api\Data\ProductInterface
         */
        public function setId($id);
    
        /**
         * Get title.
         *
         * @return string|null
         */
        public function getTitle();
    
        /**
         * Set title.
         *
         * @param string $title
         *
         * @return \Webkul\Marketplace\Api\Data\ProductInterface
         */
        public function setTitle($title);
    
        /**
         * Get desc.
         *
         * @return string|null
         */
        public function getDescription();
    
        /**
         * Set Desc.
         *
         * @param string $desc
         *
         * @return \Webkul\Marketplace\Api\Data\ProductInterface
         */
        public function setDescription($desc);
    }
    

    Now You need to create “app/code/Webkul/TestApi/etc/di.xml” file to map interfaces with the concrete classes:

    <?xml version="1.0"?>
    
    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
      <preference for="Webkul\TestApi\Api\TestApiManagementInterface" type="Webkul\TestApi\Model\Api\TestApiManagement" />
        <preference for="Webkul\TestApi\Api\Data\TestApiInterface" type="Webkul\TestApi\Model\TestApi" />
    </config>

    Now create a webapi.xml file inside app/code/Webkul/TestApi/etc folder:

    <?xml version="1.0"?>
    
    <routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd">
        <!-- test api Group -->
        <route url="/V1/testapi/custom/me" method="GET">
            <service class="Webkul\TestApi\Api\TestApiManagementInterface" method="getApiData"/>
            <resources>
                <resource ref="self"/>
            </resources>
            <data>
                <parameter name="id" force="true">%customer_id%</parameter>
            </data>
        </route>
    </routes>
    

    the above xml file defines the routes and their permissions.
    The route tag attributes:

    • attribute url defines the route for the web service
    • attribute method defines the request type GET,PUT,POST or DELETE

    Now the service tag attributes:

    • class attribute is the interface class that defines the api methods.
    •  service attribute defines the exposed method

    now the resource tag defines the access control these can be three level of access:

    •  Admin : for admin level access you need to define admin resource in the resource tag.
    • Customer: for customer level access you need to set self in the resource.
    • Guest: for guest level resources you need to define anonymous in the resource tag.
    • I have defined self so this resource will work for customer level access.

    This is the php file that you can create in your project to access the api resource

    <?php
    
    session_start();
    /*
     *  base url of the magento host
     */
    $host = 'http://magentohost';
    
    //unset($_SESSION['access_token']);
    if (!isset($_SESSION['access_token'])) {
        echo 'Authenticating...<br>';
         /*
         * authentication details of the customer
         */
        $username = '[email protected]';
        $password = 'Admin123';
        $postData['username'] = $username;
        $postData['password'] = $password;
    
        /*
         * init curl
         */
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $host.'rest/V1/integration/customer/token');
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        /*
         * set content type and length
         */
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
                'Content-Type: application/json',
                'Content-Length: '.strlen(json_encode($postData)),
            )
        );
        /*
         * setpost data
         */
        curl_setopt($ch, CURLOPT_POST, count($postData));
        curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($postData));
        $output = curl_exec($ch);
        curl_close($ch);
        /*
         * access token in json format
         */
        echo $output;
        $_SESSION['access_token'] = $output;
    }
        if (isset($_SESSION['access_token'])) {
            /*
            * create headers for authorization
            */
            $headers = array(
                'Authorization: Bearer '.json_decode($_SESSION['access_token']),
            );
            echo '<pre>';
            echo 'api call... with key: '.$_SESSION['access_token'].'<br><br><br>';
            $ch = curl_init();
            /*
            * set api resource url
            */
            curl_setopt($ch, CURLOPT_URL, $host.'rest/V1/testapi/custom/me');
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_HTTPHEADER, $headers
        );
            $output = curl_exec($ch);
            curl_close($ch);
            echo '<br>';
            /*
             * json response need to rtrim with [], some times it is appended to the respose so the json becomes invalid so need to rtrim the response
            */
            $test = json_decode(rtrim($output, '[]'));
            echo '
            =========================RESPONSE================================<br>
            ';
    
            print_r($test);
        }
    exit(0);

    In the above file I have used token based authentication. Magento2 provides 3 ways to access api resources :

    •  Token based authentication
    • 2: OAUTH based authentication
    • 3: Session Based Authentication

    You can learn more about it on magento2 api docs they have defined it very well:

    http://devdocs.magento.com/guides/v2.0/get-started/authentication/gs-authentication-token.html

    This is the response, taken snap from postman, you can see the below response is returned all the getters from the TestApi model in json format thats the beauty of magento2 api .

    rest-api-response

    That’s all, thanks for reading the article, if you have any queries regarding the blog please comment below.
    Thanks 🙂

    . . .
    Discuss on Helpdesk

    Leave a Comment

    Your email address will not be published. Required fields are marked*


    31 comments

  • srmes
    This is a great article – I need to do this soon, so it will be a good reference.

    I eventually worked it out but I found it confusing why you returned the whole object in the TestApiManager class initially -it is because it needs to return an instance of the model interface, which is defined the future in the article, maybe you can tweak the ordering? or just note that this object is returned that meets an api model interface/contract that is defined later

    Wishing you good fortune illuminating strange roads of Magento 2

  • Priyanka yendhe
    I tried same module with POST method API , but its not working.. please suggest some solution for POST API.
  • Abhishek Sharma
    Where is testApiFactory located and why is it used in TestApiManagement.php file ?
  • Nasir Mahmood
    seems interesting tutorial, Can i have the files zip please. I am totally beginner to API, so having trouble with files structure. Can you please mail or share with me.
    Thanks
  • Jim
    Why are you making composer.json? When do you use it?
    • ashutosh srivastava (Moderator)
      composer.json is used when you want to download the module using composer, although it is not needed when you are directly installing the module.
  • Rasik Miyani
    Your explanation is pretty simple but i don’t know how magento determine which class has implementation of api interface ? means you might be missing di.xml file.
    • ashutosh srivastava (Moderator)
      Yes, di.xml file was missing, I have updated the blog and added the di.xml file, thanks
  • Ashish Viradiya
    The regitration.php filename is wrong it should be registration.php
  • shweta
    how can I see the output
    • ashutosh srivastava (Moderator)
      You can use any rest client like postman to test the api response
  • Wakar
    I’m getting following output:-

    Authenticating…
    {“message”:”Request does not match any route.”}

    Why?

    I was expecting customer list as output.

    • ashutosh srivastava (Moderator)
      Hello Wakar, I dont know how you have coded it but this error clearly means, you have something wrong in webapi.xml file or you are trying hit api using wrong method(get,put,post etc) different from what you have defined in webapi.xml.
  • sid
    Hello ,

    where should i place this files composer.json, regitration.php and module.xml in magento 2, Please tell me file paths for these files.
    For above folder structure you create all files under app/code directory , But in M2 code folder is not present so i need to create code folder under add directory?? or there is another path for your created module ??

    I am new to M2 and I stuck here please help me..
    Thank you in advance.

  • Yohanes Pradono
    that only explains GET. What about PUT and POST?
    How to “catch” the json data from the request sent?
    • Webkul Support
      Hi Yohanes Pradono,
      Thanks for your interest for sure we will update it in our future blogs.
  • Abhishek Tripathi
    I am totally new to magento may be this is a silly question but I want to know that what would be the location of last file?
    • Webkul Support
      Hello Abhishek,
      The last file is for accessing the magento2 rest api that you have created, this file is not dependent to magento or php it can be in any programming language like java, python, I have just given an example of how to access it in php.
      • Webkul Support
        you can put it anywhere on your server, it should be accessible online
        • sid
          where should i place this files composer.json, regitration.php and module.xml in magento 2, Please tell me file paths for these files. I stuck here please help me..
  • Manish Joy
    Hello,
    I have implemented the above, it shows getJsonResponse() not defined. Please help
    • Ashutosh Srivastava
      sorry I did not define the function above, if you are coding in magento2.2 simply return the array it will automatically sent as a json response
  • Rafael Corrêa Gomes ♛
    Thanks for sharing!
  • Jagdish Ram
    Hi Ashutosh

    {
    “message”: “%fieldName is a required field.”,
    “parameters”: {
    “fieldName”: “id”
    }
    }

    Any luck ?

  • Roberto
    I have this response:

    [message] => Consumer is not authorized to access %resources

    Any help on this?

    • Roberto
      I answer myself… it was a server configuration issue. Thanks anyways
      • Ashutosh Srivastava
        your welcome
  • Rav
    Hi Ashutosh,

    You didn’t passed value of param “customer_id” while making rest api call. How should we pass this parameter to rest api call?

    • Ashutosh Srivastava
      Sorry for late reply, there is no need to pass customer_id as I have used ‘me’ for that in ‘rest/V1/testapi/custom/me’, it will automatically check if the token is generated by customer level access, and will pass the customer_id in your function. as defined in the webapi.xml

      %customer_id%

  • How To Create Rest Based Web Api In Magento2 -
    […] How to create rest based web api in magento2 […]
  • Back to Top

    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home