본문 바로가기

일상/유용한 사이트

유용한 무료 사진 사이트 Unsplash & Unsplash api


무료 고해상도 이미지 사이트 Unsplash.com

unsplash.com 사이트는 무료 고해상도 이미지 사이트이다. ppt를 만들거나 멋진 배경화면을 찾을 때 많이 사용하는데, 사실 이미지를 제공하는 만큼이나 강력한 API들을 제공하기 때문에 좋다고 말 할 수 있다.

Unsplash Developer


Unsplash developer urlhttps://unsplash.com/developers

Unsplash simple api urlhttps://source.unsplash.com/

Unsplash api는 24만개 이상의 무료 고해상도 이미지를 제공하며, 4만명 이상의 사진작가들의 데이터를 보유하고 있다. api는 누구나 무료로 사용할 수 있다! 아래의 simple api들을 소개하고자 한다.


Unsplash Source APIs

Unsplash Source는 간단한 restApi(get)으로 간편하게 이미지를 얻을 수 있다.


Random image

url : https://source.unsplash.com/random

Example Code
1
<img src="https://source.unsplash.com/random">
cs

Example Image

Random From Specific user

url : https://source.unsplash.com/user/{USERNAME}

Example Code
1
<img src="https://source.unsplash.com/user/erondu/400x300">
cs

Example Image

Random from a collection

url : https://source.unsplash.com/collection/{COLLECTION ID}

Example Code
1
<img src="https://source.unsplash.com/collection/190727/400x300">
cs

Example Image

Daily/weekly photo

url : https://source.unsplash.com/daily
url : https://source.unsplash.com/weekly


Example Code
1
<img src="https://source.unsplash.com/daily">
cs

Example Image


Random from a category

url : https://source.unsplash.com/category/{CATEGORY}/weekly

Example Code
1
<img src="https://source.unsplash.com/category/nature/weekly">
cs

Example Image


End of Document.

반응형