Build on the SYBI data layer. Access all the data used to power Sybi in your apps today. Request any additions that could be helpful.

Live game state, seasons, rounds, and player activity.
Wallet ownership and holdings across Moonbirds collections.
Metadata and attributes for Moonbirds assets.
The SYBI API uses bearer tokens. Keys are manually issued for now, so in order to gain access there's a few small steps to take.
The SYBI API is a read-only JSON REST API for Moonbirds ecosystem data — collections, wallet ownership, Birb Game rounds, and live nesting stats. All routes live under https://api.soyouboughtit.app/v1.
429 Too Many Requests response also includes Retry-After in seconds.X-RateLimit-Limit: 60 X-RateLimit-Remaining: 57 X-RateLimit-Reset: 1716678901 Retry-After: 42 // only on 429
error field and the appropriate HTTP status. Status codes used: 400 bad input, 401 missing or invalid key, 404 not found, 429 rate-limited, 500 server error.// 400 example
{ "error": "Invalid Ethereum address" }
// 401 example
{ "error": "Invalid token" }
// 404 example
{ "error": "Token not found" }
// 429 example
{ "error": "Rate limit exceeded" }
// 500 example
{ "error": "Internal server error" }The SYBI API uses bearer tokens. Keys are manually issued for now, so in order to gain access there's a few small steps to take.