PHPackages                             tims/flipkart-seller-api-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. tims/flipkart-seller-api-php

ActiveLibrary

tims/flipkart-seller-api-php
============================

PHP client for Flipkart Seller APIs

v1.0.0(1mo ago)06↓75%1MITPHPPHP &gt;=8.2

Since Jul 14Pushed 1mo agoCompare

[ Source](https://github.com/timslabs/flipkart-seller-api-php)[ Packagist](https://packagist.org/packages/tims/flipkart-seller-api-php)[ RSS](/packages/tims-flipkart-seller-api-php/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (2)Versions (2)Used By (1)

flipkart-seller-api-php
=======================

[](#flipkart-seller-api-php)

PHP client for Flipkart Seller APIs. Ported from the [Java SDK](https://github.com/Flipkart/flipkart-seller-api-java-sdk).

Requires PHP 8.2+, ext-json, and Guzzle 7.

```
composer require tims/flipkart-seller-api-php
```

Usage
-----

[](#usage)

```
use Flipkart\SellerApi\Environment;
use Flipkart\SellerApi\FlipkartSellerClient;

$fk = FlipkartSellerClient::fromCredentials(
    Environment::Sandbox, // or Environment::Prod
    getenv('FLIPKART_CLIENT_ID'),
    getenv('FLIPKART_CLIENT_SECRET'),
);

$listings = $fk->listingsCommonV3()->getListings('SKU1,SKU2');
```

For third-party OAuth, pass `redirectUrl`, `state`, and `authCode` into `fromCredentials()`.

You can also build an `ApiClient` yourself:

```
use Flipkart\SellerApi\AccessTokenGenerator;
use Flipkart\SellerApi\ApiClient;
use Flipkart\SellerApi\Api\OrdersV2Api;
use Flipkart\SellerApi\Environment;
use Flipkart\SellerApi\UrlConfiguration;

new UrlConfiguration(Environment::Sandbox);

$token = (new AccessTokenGenerator)
    ->clientCredentials($clientId, $clientSecret)
    ->getAccessToken();

$client = new ApiClient;
$client->setAccessToken($token);

$orders = new OrdersV2Api($client);
$result = $orders->searchOrderItemRequest([/* ... */]);
```

API classes under `Flipkart\SellerApi\Api\` match the Java SDK (`ListingsCommonV3Api`, `OrdersV2Api`, `ShipmentV3Api`, etc.). Methods return decoded JSON arrays, or raw strings for PDFs and other binary responses.

- Sandbox: `https://sandbox-api.flipkart.net/sellers`
- Production: `https://api.flipkart.net/sellers`

Get credentials from Flipkart Seller Developer Admin.

License
-------

[](#license)

MIT

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance90

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

48d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1b9572b2d9e20e57d4cfd779f3f5734ae78d1e78651b4352c98c488c40020fc7?d=identicon)[MrHitss](/maintainers/MrHitss)

---

Top Contributors

[![MrHitss](https://avatars.githubusercontent.com/u/41452196?v=4)](https://github.com/MrHitss "MrHitss (1 commits)")[![timslabs](https://avatars.githubusercontent.com/u/102379998?v=4)](https://github.com/timslabs "timslabs (1 commits)")

---

Tags

sdkecommercemarketplaceflipkartseller-api

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/tims-flipkart-seller-api-php/health.svg)

```
[![Health](https://phpackages.com/badges/tims-flipkart-seller-api-php/health.svg)](https://phpackages.com/packages/tims-flipkart-seller-api-php)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.4k567.5M2.9k](/packages/aws-aws-sdk-php)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

353.6k](/packages/eslazarev-wildberries-sdk)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.1k1.0M59](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3751.3M49](/packages/tencentcloud-tencentcloud-sdk-php)[tempest/framework

The PHP framework that gets out of your way.

2.3k42.4k21](/packages/tempest-framework)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

529.0M7](/packages/avalara-avataxclient)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
