PHPackages                             indielab/autoscout24 - 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. [API Development](/categories/api)
4. /
5. indielab/autoscout24

ActiveLibrary[API Development](/categories/api)

indielab/autoscout24
====================

AutoScout24 PHP API.

1.6.1(11mo ago)123505[1 PRs](https://github.com/nadar/autoscout24/pulls)PHPPHP &gt;=7.4CI failing

Since Apr 12Pushed 5mo ago4 watchersCompare

[ Source](https://github.com/nadar/autoscout24)[ Packagist](https://packagist.org/packages/indielab/autoscout24)[ Docs](https://github.com/indielab/autoscout24)[ RSS](/packages/indielab-autoscout24/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (2)Versions (16)Used By (0)

> DANGER: The AutoScout24 Endpoint is only available if they whiteliste your provided IP Address, this makes it very hard to develop local - as you can imagine. An incredible bad solution for such a big company, just saying. Maybe try to use another car sharing platform which provides a more modern technology approach!

AutoScout24 PHP REST API CLIENT
===============================

[](#autoscout24-php-rest-api-client)

[![Latest Stable Version](https://camo.githubusercontent.com/7d5050362d7aaeeffd9f8901a45112e9ce8b8475674dbc516209af654f9f43f6/68747470733a2f2f706f7365722e707567782e6f72672f696e6469656c61622f6175746f73636f757432342f762f737461626c65)](https://packagist.org/packages/indielab/autoscout24)[![Total Downloads](https://camo.githubusercontent.com/5cf7d073cae015f354ab06d823e46a46746b77339a462cdcec2a761a1732725c/68747470733a2f2f706f7365722e707567782e6f72672f696e6469656c61622f6175746f73636f757432342f646f776e6c6f616473)](https://packagist.org/packages/indielab/autoscout24)[![License](https://camo.githubusercontent.com/fc11f8779398b2e09a48fb28206b081f0cb03d87b26715f5f0666622c9cedc68/68747470733a2f2f706f7365722e707567782e6f72672f696e6469656c61622f6175746f73636f757432342f6c6963656e7365)](https://packagist.org/packages/indielab/autoscout24)

A very easy to use library to work with the AutoScout24 REST Api.

Examples
--------

[](#examples)

Before using the library you have to obtain your *cuid* and *memberid* from the AutoScout24 Support.

### Getting Data

[](#getting-data)

```
// setup client object
$client = new Client($cuid, $memberId);

// generate query object
$query = new VehicleQuery();
$query->setClient($client);
foreach ($cars->find() as $car) {
    $car->getTypeNameFull();
}
```

The above code is equal with the following short notation:

```
$client = new Client($cuid, $memberId);
$cars = (new VehicleQuery())->setClient($client)->find();
foreach ($cars as $car) {
    $car->getId();
}
```

In order to generate a response without pagination use:

```
$client = new Client($cuid, $memberId);
$cars = (new VehicleQuery())->setClient($client)->findAll();
```

Find a car by its id:

```
$client = new Client($cuid, $memberId);
$car = (new VehicleQuery())->setClient($client)->findOne($carId);
```

Filter and Sorting:

```
$client = new Client($cuid, $memberId);
$cars = (new VehicleQuery())->setClient($client)->setVehicleSorting('price_desc')->find();
```

See the VehiceQuery class for all filter and sorting methods like:

- setVehicleSorting()
- setVehicleTypeId()
- setYearTo()
- setEquipment()
- setPage()
- setItemsPerPage()
- setMake()
- setModel()

### Meta Data

[](#meta-data)

```
$client = new Clien($cuid, $memberId);
$data = (new MetaQuery())->setClient($client)->findPkw();

foreach ($data as $meta) {
    var_dump($meta->getParameterName(), $meta->getDescription());
}
```

filter by a type

```
$meta = (new MetaQuery())->setClient($this->client)->findPkw()->filter('sort');
```

###  Health Score

46

—

FairBetter than 92% of packages

Maintenance63

Regular maintenance activity

Popularity21

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 74.1% 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

Every ~231 days

Recently: every ~34 days

Total

14

Last Release

359d ago

PHP version history (2 changes)1.1.0PHP &gt;=7.1

1.3.0PHP &gt;=7.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/86184bf08843ed8fcc4aedb2fdecd8a9e832e47e89a7166cebfda529c176f5ce?d=identicon)[nadar](/maintainers/nadar)

---

Top Contributors

[![nadar](https://avatars.githubusercontent.com/u/3417221?v=4)](https://github.com/nadar "nadar (40 commits)")[![hiteshmakvana](https://avatars.githubusercontent.com/u/42602299?v=4)](https://github.com/hiteshmakvana "hiteshmakvana (13 commits)")[![rainerCH](https://avatars.githubusercontent.com/u/12884243?v=4)](https://github.com/rainerCH "rainerCH (1 commits)")

---

Tags

phpapiautoscout24

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/indielab-autoscout24/health.svg)

```
[![Health](https://phpackages.com/badges/indielab-autoscout24/health.svg)](https://phpackages.com/packages/indielab-autoscout24)
```

###  Alternatives

[jstolpe/instagram-graph-api-php-sdk

Instagram Graph API PHP SDK

138106.8k2](/packages/jstolpe-instagram-graph-api-php-sdk)

PHPackages © 2026

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