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.
| Action | Required | Optional | Delivery | Limit | Per 1,000 | Response fields |
|---|---|---|---|---|---|---|
searchSearch Use DeviantArt | keyword | category | Sync delivery | Catalog 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 requests | id · url · title · text · category · image_url · thumbnail_url · author_username · author_name · author_url · author_avatar_url · posted_at · platform |
galleryGallery The DeviantArt route named | username | category | Sync delivery | Catalog 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 requests | id · url · title · text · category · image_url · thumbnail_url · author_username · author_name · author_url · author_avatar_url · posted_at · platform |
popularPopular Read popular-item records from DeviantArt by setting action to | category | Sync delivery | Catalog 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 requests | id · url · title · text · category · image_url · thumbnail_url · author_username · author_name · author_url · author_avatar_url · posted_at · platform | |
profileProfiles Use DeviantArt | username | category | Sync delivery | — | $1.39 per 1,000 requests | username · 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?
Use DeviantArt search to discover DeviantArt public results. For DeviantArt search, supply keyword and category; results include posted_at, text, author_username, image_url, url, title, platform, thumbnail_url, id, author_name, category, author_avatar_url, and author_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?
The DeviantArt route named gallery is limited to gallery items. Use DeviantArt account input with gallery; DeviantArt then reads gallery items. For DeviantArt gallery, supply username and category; results include title, author_name, platform, image_url, author_username, author_url, url, category, text, posted_at, thumbnail_url, id, and author_avatar_url.
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.DeviantArt: Access Requirements for Public and Restricted GalleriesDeviantArt documentation specifies that moving work to a Premium or Watchers-Only Gallery alters access permissions. Returning a public gallery list does not imply access to paid or watcher-exclusive deviations.Checked
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 popular parameters mean?
Read popular-item records from DeviantArt by setting action to popular. The call needs no required business input and optional category cannot widen its object type. Call DeviantArt popular with category; DeviantArt popular exposes id, category, image_url, author_avatar_url, author_name, platform, author_username, posted_at, title, text, thumbnail_url, url, and author_url.
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 profile parameters mean?
Use DeviantArt profile to read one DeviantArt public record. Use DeviantArt account input with profile; DeviantArt then reads public record. Creator detail describes one DeviantArt portfolio and its public account metadata. Call DeviantArt profile with category and username; DeviantArt profile exposes display_name, username, avatar_url, platform, bio, and url.
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
- 01Read the public catalog and choose a platform action.
- 02Send the platform, action, and required parameters to POST /api/v1/social.
- 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
- 04Store the structured response fields needed by your application.
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.