{"id":22480153,"url":"https://github.com/findify/php-sdk","last_synced_at":"2026-04-27T23:39:11.034Z","repository":{"id":62504798,"uuid":"79429480","full_name":"findify/php-sdk","owner":"findify","description":"Findify PHP SDK","archived":false,"fork":false,"pushed_at":"2019-04-03T14:39:41.000Z","size":83,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-03-27T18:34:54.857Z","etag":null,"topics":["composer","findify","php","php-sdk","sdk","search"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/findify.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-19T07:56:24.000Z","updated_at":"2019-04-03T14:39:43.000Z","dependencies_parsed_at":"2022-11-02T12:31:08.196Z","dependency_job_id":null,"html_url":"https://github.com/findify/php-sdk","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/findify/php-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/findify%2Fphp-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/findify%2Fphp-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/findify%2Fphp-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/findify%2Fphp-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/findify","download_url":"https://codeload.github.com/findify/php-sdk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/findify%2Fphp-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32360116,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["composer","findify","php","php-sdk","sdk","search"],"created_at":"2024-12-06T15:19:55.015Z","updated_at":"2026-04-27T23:39:11.017Z","avatar_url":"https://github.com/findify.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Findify PHP SDK\n\nThis is a PHP SDK for our JSON API, you can check full documentation at [Findify Developer Portal](https://developers.findify.io/)\n\n## Requirements\n\nPHP 5.4.0 and later\n\n## Installation \u0026 Usage\n\n### Composer\n\nTo install the bindings via [Composer](http://getcomposer.org/), add the following to `composer.json`:\n\n```\n{\n  \"require\": {\n    \"findify/sdk\": \"1.*\"\n  }\n}\n```\n\nThen run `composer install`\n\n### Manual Installation\n\nDownload the files and include `autoload.php`:\n\n```php\nrequire_once('/path-to-findify-sdk/autoload.php');\n```\n\n## Getting Started\n\n_Please visit [Findify Developer Portal](https://developers.findify.io) for the full API spec and guides._\n\n### Authentication\n\nPlease check [Findify Developer Portal](https://developers.findify.io/reference#authentication) to get the API key\n\n### Requesting the API\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```php\n\u003c?php\nrequire_once(__DIR__ . '/vendor/autoload.php');\n\n// Configure API key authorization: key\nSwagger\\Client\\Configuration::getDefaultConfiguration()-\u003esetApiKey('X-Key', 'YOUR_API_KEY');\n\n$api_instance = new Swagger\\Client\\Api\\DefaultApi();\n$autocomplete = new \\Swagger\\Client\\Model\\AutocompleteRequest(); // \\Swagger\\Client\\Model\\AutocompleteRequest | Request parameters for autocomplete\n\ntry {\n    $result = $api_instance-\u003eautocompletePost($autocomplete);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-\u003eautocompletePost: ', $e-\u003egetMessage(), PHP_EOL;\n}\n\n?\u003e\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api-v3.findify.io/v3*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*DefaultApi* | [**autocompletePost**](docs/Api/DefaultApi.md#autocompletepost) | **POST** /autocomplete | \n*DefaultApi* | [**feedbackPost**](docs/Api/DefaultApi.md#feedbackpost) | **POST** /feedback | \n*DefaultApi* | [**recommendItemsFeaturedPost**](docs/Api/DefaultApi.md#recommenditemsfeaturedpost) | **POST** /recommend/items/featured | \n*DefaultApi* | [**recommendItemsItemIdViewedViewedPost**](docs/Api/DefaultApi.md#recommenditemsitemidviewedviewedpost) | **POST** /recommend/items/{item_id}/viewed/viewed | \n*DefaultApi* | [**recommendItemsItemIdsBoughtBoughtPost**](docs/Api/DefaultApi.md#recommenditemsitemidsboughtboughtpost) | **POST** /recommend/items/{item_ids}/bought/bought | \n*DefaultApi* | [**recommendItemsNewestPost**](docs/Api/DefaultApi.md#recommenditemsnewestpost) | **POST** /recommend/items/newest | \n*DefaultApi* | [**recommendItemsTrendingPost**](docs/Api/DefaultApi.md#recommenditemstrendingpost) | **POST** /recommend/items/trending | \n*DefaultApi* | [**recommendItemsViewedLatestPost**](docs/Api/DefaultApi.md#recommenditemsviewedlatestpost) | **POST** /recommend/items/viewed/latest | \n*DefaultApi* | [**recommendSlotPost**](docs/Api/DefaultApi.md#recommendslotpost) | **POST** /recommend/{slot} | \n*DefaultApi* | [**searchPost**](docs/Api/DefaultApi.md#searchpost) | **POST** /search | \n*DefaultApi* | [**smartCollectionSlotPost**](docs/Api/DefaultApi.md#smartcollectionslotpost) | **POST** /smart-collection/{slot} | \n\n\n## Documentation For Models\n\n - [AutocompleteRequest](docs/Model/AutocompleteRequest.md)\n - [AutocompleteResponse](docs/Model/AutocompleteResponse.md)\n - [AutocompleteResponseMeta](docs/Model/AutocompleteResponseMeta.md)\n - [AutocompleteSuggestion](docs/Model/AutocompleteSuggestion.md)\n - [Banner](docs/Model/Banner.md)\n - [BannerProducts](docs/Model/BannerProducts.md)\n - [CollectionRequest](docs/Model/CollectionRequest.md)\n - [CollectionResponse](docs/Model/CollectionResponse.md)\n - [CollectionResponseMeta](docs/Model/CollectionResponseMeta.md)\n - [Error](docs/Model/Error.md)\n - [Facet](docs/Model/Facet.md)\n - [FacetChildValueFour](docs/Model/FacetChildValueFour.md)\n - [FacetChildValueOne](docs/Model/FacetChildValueOne.md)\n - [FacetChildValueThree](docs/Model/FacetChildValueThree.md)\n - [FacetChildValueTwo](docs/Model/FacetChildValueTwo.md)\n - [FeaturedRecommendationRequest](docs/Model/FeaturedRecommendationRequest.md)\n - [Feedback](docs/Model/Feedback.md)\n - [Filter](docs/Model/Filter.md)\n - [FilterValues](docs/Model/FilterValues.md)\n - [GenericRecommendationRequest](docs/Model/GenericRecommendationRequest.md)\n - [GenericRecommendationResponse](docs/Model/GenericRecommendationResponse.md)\n - [GenericRecommendationResponseMeta](docs/Model/GenericRecommendationResponseMeta.md)\n - [Product](docs/Model/Product.md)\n - [RecommendationFilter](docs/Model/RecommendationFilter.md)\n - [RecommendationFilterValues](docs/Model/RecommendationFilterValues.md)\n - [RecommendationRequest](docs/Model/RecommendationRequest.md)\n - [Redirect](docs/Model/Redirect.md)\n - [SearchRequest](docs/Model/SearchRequest.md)\n - [SearchResponse](docs/Model/SearchResponse.md)\n - [SearchResponseMeta](docs/Model/SearchResponseMeta.md)\n - [Sort](docs/Model/Sort.md)\n - [User](docs/Model/User.md)\n \n## Running tests\n\nTo run the unit tests:\n\n```\ncomposer install\n./vendor/bin/phpunit lib/Tests\n```\n\n## Contributing\n\nFeel free to create issues, send pull requests or contact us at yourfriends@findify.io!\n\n## Licence\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffindify%2Fphp-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffindify%2Fphp-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffindify%2Fphp-sdk/lists"}