PHPackages                             sharpapi/laravel-skills-database-api - 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. sharpapi/laravel-skills-database-api

ActiveLibrary[API Development](/categories/api)

sharpapi/laravel-skills-database-api
====================================

Skills Database API for Laravel powered by SharpAPI.com

1.0.1(4mo ago)01MITPHPPHP ^8.1

Since Jan 9Pushed 1mo agoCompare

[ Source](https://github.com/sharpapi/laravel-skills-database-api)[ Packagist](https://packagist.org/packages/sharpapi/laravel-skills-database-api)[ Docs](https://github.com/sharpapi/laravel-skills-database-api)[ RSS](/packages/sharpapi-laravel-skills-database-api/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (5)Versions (3)Used By (0)

[![SharpAPI GitHub cover](https://camo.githubusercontent.com/82bb36706c1e71276b3dca4ec9120353bb51c8f22bb62543bf056db5c28da36d/68747470733a2f2f73686172706170692e636f6d2f73686172706170692d6769746875622d6c61726176656c2d62672e6a7067 "SharpAPI Laravel Client")](https://camo.githubusercontent.com/82bb36706c1e71276b3dca4ec9120353bb51c8f22bb62543bf056db5c28da36d/68747470733a2f2f73686172706170692e636f6d2f73686172706170692d6769746875622d6c61726176656c2d62672e6a7067)

Skills Database API for Laravel
===============================

[](#skills-database-api-for-laravel)

🚀 Access a comprehensive database of professional skills for your Laravel applications.
---------------------------------------------------------------------------------------

[](#-access-a-comprehensive-database-of-professional-skills-for-your-laravel-applications)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4673551afffd5612d76f0f12c5840107211eb7ea4ea1426edfb3bc3e0973d7e3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73686172706170692f6c61726176656c2d736b696c6c732d64617461626173652d6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sharpapi/laravel-skills-database-api)[![Total Downloads](https://camo.githubusercontent.com/70359e3d70e3a3b6948d48d64c5311d1cc86aa77f848a770fc9cd479c9d418f4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73686172706170692f6c61726176656c2d736b696c6c732d64617461626173652d6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sharpapi/laravel-skills-database-api)

Check the details at SharpAPI's [Skills Database API](https://sharpapi.com/en/catalog/utility/skills-database-api) page.

---

Requirements
------------

[](#requirements)

- PHP &gt;= 8.1
- Laravel &gt;= 10.48.29

---

Installation
------------

[](#installation)

Follow these steps to install and set up the SharpAPI Laravel Skills Database API package.

1. Install the package via `composer`:

```
composer require sharpapi/laravel-skills-database-api
```

2. Register at [SharpAPI.com](https://sharpapi.com/) to obtain your API key.
3. Set the API key in your `.env` file:

```
SHARP_API_KEY=your_api_key_here
```

4. **\[OPTIONAL\]** Publish the configuration file:

```
php artisan vendor:publish --tag=sharpapi-skills-database-api
```

---

Key Features
------------

[](#key-features)

- **Skill Search**: Search for skills by name or keyword.
- **Skill Details**: Get detailed information about specific skills.

---

Usage
-----

[](#usage)

You can inject the `SkillsDatabaseApiService` class to access the skills database functionality.

### Basic Workflow

[](#basic-workflow)

1. **Search for Skills**: Use `searchSkills` to find skills by name or keyword.
2. **Get Skill Details**: Use `getSkillById` to get detailed information about a specific skill.

---

### Controller Example

[](#controller-example)

Here is an example of how to use `SkillsDatabaseApiService` within a Laravel controller:

```
