EveryData platform API

DeviantArt API

Use DeviantArt for DeviantArt works, galleries, popular items, and creator profiles only through the 4 listed contracts, such as `search`, `gallery`, `popular`, because one view does not inherit another view’s reach.

For matching public results, use DeviantArt action `search` with `keyword`; for gallery items, switch to `gallery` and `username`, rather than carrying parameters across.

Endpoint
POST /api/v1/social
Capabilities
4
Per 1,000
$1.389

Available capabilities

Compare the DeviantArt actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.

ActionRequiredOptionalDeliveryLimitPer 1,000Response fields
search

Search

Search public results on DeviantArt. Accepts these parameters: keyword and category. Returns these fields: posted_at, text, author_username, and image_url.

keywordcategorySync deliveryCatalog values: defaultLimit=30, maxLimit=100. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count.$1.39 per 1,000 requestsid · url · title · text · category · image_url · thumbnail_url · author_username · author_name · author_url · author_avatar_url · posted_at · platform
gallery

Gallery

Use the gallery action on DeviantArt. Accepts these parameters: username and category. Returns these fields: title, author_name, image_url, and author_username.

usernamecategorySync deliveryCatalog values: defaultLimit=30, maxLimit=100. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count.$1.39 per 1,000 requestsid · url · title · text · category · image_url · thumbnail_url · author_username · author_name · author_url · author_avatar_url · posted_at · platform
popular

Popular

Use the popular action on DeviantArt. Accepts these parameters: category. Returns these fields: category, image_url, author_avatar_url, and author_name.

categorySync deliveryCatalog values: defaultLimit=30, maxLimit=100. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count.$1.39 per 1,000 requestsid · url · title · text · category · image_url · thumbnail_url · author_username · author_name · author_url · author_avatar_url · posted_at · platform
profile

Profiles

Retrieve public profile details from DeviantArt. Accepts these parameters: category and username. Returns these fields: display_name, username, avatar_url, and bio.

usernamecategorySync delivery$1.39 per 1,000 requestsusername · display_name · bio · avatar_url · url · platform

What does each DeviantArt action accept?

Each answer below pairs one callable action with its real inputs. Parameter meanings and allowed values are action-specific; a familiar name does not carry the same meaning across every platform.

Official sources are linked only to clarify the platform term beside them. They do not imply platform authorization or endorsement, and they do not add official-site features to the EveryInfra API contract.

What do the DeviantArt search parameters mean?

Search public results on DeviantArt. Accepts these parameters: keyword and category. Returns these fields: posted_at, text, author_username, and image_url.

keywordRequired
Specifies the subject search query for DeviantArt artwork discovery, such as landscape. Queries artwork titles and metadata rather than performing exact username searches; use gallery with username to fetch work by a specific creator.
categoryOptional
Filters artwork discovery across actions using any_category, digital_art, traditional_art, photography, fan_art, literature, film_animation, or designs. Applies strictly to individual deviation items and does not guarantee complete portfolio representation for a creator.
Allowed values:any_categorydesignsdigital_artfan_artfilm_animationliteraturephotographytraditional_art

What do the DeviantArt gallery parameters mean?

Use the gallery action on DeviantArt. Accepts these parameters: username and category. Returns these fields: title, author_name, image_url, and author_username.

What do the DeviantArt popular parameters mean?

Use the popular action on DeviantArt. Accepts these parameters: category. Returns these fields: category, image_url, author_avatar_url, and author_name.

What do the DeviantArt profile parameters mean?

Retrieve public profile details from DeviantArt. Accepts these parameters: category and username. Returns these fields: display_name, username, avatar_url, and bio.

usernameRequired
Specifies the DeviantArt artist username without an @ symbol, domain name, or profile path. Used in gallery to retrieve user artwork, and in profile to construct a lightweight profile derived from deviation metadata; profile data may be unavailable if no artwork records exist.
categoryOptional
Filters artwork discovery across actions using any_category, digital_art, traditional_art, photography, fan_art, literature, film_animation, or designs. Applies strictly to individual deviation items and does not guarantee complete portfolio representation for a creator.
Allowed values:any_categorydesignsdigital_artfan_artfilm_animationliteraturephotographytraditional_art

How to use the DeviantArt API

  1. 01Read the public catalog and choose a platform action.
  2. 02Send the platform, action, and required parameters to POST /api/v1/social.
  3. 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
  4. 04Store the structured response fields needed by your application.
deviantart_search.sh
curl -X POST https://api.everyinfra.com/api/v1/social \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"deviantart","action":"search","params":{"keyword":"<keyword>"}}'

DeviantArt API questions

What can I retrieve with the DeviantArt API?

Set platform to deviantart. The current catalog lists search, gallery, popular, and profiles. These action names identify different DeviantArt objects or views; they are not interchangeable search modes.

Which input starts a DeviantArt `search` request?

Specifies the subject search query for DeviantArt artwork discovery, such as landscape. Queries artwork titles and metadata rather than performing exact username searches; use gallery with username to fetch work by a specific creator. Send it as keyword inside params.

Which fields can DeviantArt `search` return?

Its declared schema includes title, text, category, and image_url. A declared field can still be absent from an individual source record, and every other action has its own field list.

Does every DeviantArt action return immediately?

No assumption is needed: this page labels each action's delivery mode. The current catalog contains sync delivery; poll a returned job ID only for an action labeled asynchronous.