# PexelsNet **Repository Path**: mirrors_sampotts/PexelsNet ## Basic Information - **Project Name**: PexelsNet - **Description**: PexelsNet is a .NET class library that provides an easy-to-use interface for the https://www.pexels.com/ web api - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PexelsNet PexelsNet is a .NET class library that provides an easy-to-use interface for the https://www.pexels.com/ web api ##Initializing ```csharp PexelsClient client = new PexelsClient(""); ``` Than to search pictures ```csharp var page = client.Search("business"); foreach (var photo in page.Photos) { Console.WriteLine(photo.Src.Medium); } ``` Paginate ```csharp var page = client.Search("business", 2, 20); ```