https://github.com/souvik666/artic-sdk
Elevate your art projects π¨ with the Art Institute of Chicago API SDK β crafted in TypeScript and β€οΈ. Seamlessly access agents, artworks, exhibitions, and more from the Artic Framework. Dive into creativity with our SDK
https://github.com/souvik666/artic-sdk
art art-institute-of-chicago-api sdk-typescript typescript
Last synced: 5 months ago
JSON representation
Elevate your art projects π¨ with the Art Institute of Chicago API SDK β crafted in TypeScript and β€οΈ. Seamlessly access agents, artworks, exhibitions, and more from the Artic Framework. Dive into creativity with our SDK
- Host: GitHub
- URL: https://github.com/souvik666/artic-sdk
- Owner: souvik666
- License: mit
- Created: 2023-08-19T13:10:36.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-12T08:39:14.000Z (over 1 year ago)
- Last Synced: 2025-10-11T07:27:36.995Z (8 months ago)
- Topics: art, art-institute-of-chicago-api, sdk-typescript, typescript
- Language: TypeScript
- Homepage: https://souvik666.github.io/artic-sdk/
- Size: 261 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README

# [ArticSdk](https://www.npmjs.com/package/artic-sdk?activeTab=readme) Documentation
## Introduction
Welcome to the ArticSdk documentation! This document provides an in-depth overview of the `ArticSdk` class. Developed by **Souvik666**, this SDK serves as a gateway to the Artic Framework's diverse services and functionalities. With static properties, it offers seamless access to service instances designed to manage agents, artworks, exhibitions, products, places, and galleries and so on
## Install
## Using GITHUB
```bash
npm i -s git+ssh://git@github.com/souvik666/artic-sdk.git
```
## Using NPM
```bash
npm i artic-sdk
```
## Table of Contents
- [Introduction](#introduction)
- [Getting Started](#getting-started)
- [Service Instances](#service-instances)
- [Contributions](#contributions)
## π Getting Started
Getting started with the `ArticSdk` is easy! Begin by importing the class and utilizing its service instances in your application. This example showcases how to get started:
```typescript
import { ArticSdk } from 'artic-sdk';
// Access service instances
const agentInstance = ArticSdk.agent;
const artworkInstance = ArticSdk.artwork;
const exhibitionInstance = ArticSdk.exhibition;
// ... and so on
```
# Service Instances
## AgentService
The AgentService instance allows you to seamlessly manage agents within the Artic Framework. This service facilitates the retrieval of agent information, searching for agents, and more. Here's how you can interact with it:
```typescript
// Retrieve a list of agents with pagination and search
const agents = await agentInstance.get({
params: {
limit: 10,
page: 1,
fields: 'artist_pivots',
ids: '1,2,3,4'
},
config: {} // Extra header configuration if needed
});
// Get details of a specific agent
const specificAgent = await agentInstance.getOne(agentId);
// Search for agents based on various criteria
const searchedAgents = await agentInstance.search({
params: {
limit: 10,
page: 1,
fields: 'artist_pivots',
q: 'Hello world',
// ... other search parameters
},
config: {} // Extra header configuration if needed
});
```
- βοΈ Repeat this pattern for other service instances, such as `Artwork`, `ExhibitionsService`, `ProductService`, `PlaceService`, and so on.
# Contributions π€
The ArticSdk project warmly welcomes contributions from the developer community. If you have ideas for enhancements, bug fixes, or new features, don't hesitate to fork the repository, implement your changes, and submit a pull request. By collaborating, we can collectively improve the ArticSdk and create an enhanced experience for all users of the Artic Framework.
# π Shoutout to [Art Institute of Chicago API](https://api.artic.edu/docs/)π¨ποΈ
We want to extend our heartfelt appreciation to the Art Institute of Chicago for providing the remarkable Art Institute of Chicago API. This API has opened up a world of creative possibilities and enriched the way we access and engage with art-related information.
The Art Institute of Chicago API empowers developers, art enthusiasts, and researchers to access a wealth of artistic and cultural data. With its well-documented endpoints and user-friendly resources, the API allows us to seamlessly explore the art world, gather insights, and create innovative applications.
Whether it's exploring artworks, learning about artists, or discovering exhibitions, the Art Institute of Chicago API makes it all possible. The dedication of the API team in providing a reliable and informative resource is truly commendable.
So, here's to the Art Institute of Chicago APIβthank you for enriching our digital landscape and inspiring creativity. π¨β¨
Check out the API documentation: [Art Institute of Chicago API Documentation](https://api.artic.edu/docs/)