Using shotstack-sdk-ruby with shotstack.io

Ruby integration

✓ Official SDK
Install
gem install shotstack-sdk-ruby
Quick start
require 'shotstack-sdk-ruby'

client = ShotstackSdkRuby::Client.new(api_key: "YOUR_API_KEY")
Get Asset
curl \
  -H "x-api-key: $API_KEY" \
  https://api.shotstack.io/v1/assets/{id}
Get Render Status
curl \
  -H "x-api-key: $API_KEY" \
  https://api.shotstack.io/v1/render/{id}
Get Asset by Render ID
curl \
  -H "x-api-key: $API_KEY" \
  https://api.shotstack.io/v1/assets/render/{id}
SDK on GitHub 📄 API Docs
SDK
shotstack-sdk-ruby
Ruby
API
shotstack.io
shotstack.io
At a glance
Language Ruby
Endpoints5
Base URLhttps://api.shotstack.io/v1
✓ Official