{"id":15857427,"url":"https://github.com/timmikeladze/animal-crossing-api","last_synced_at":"2026-05-03T05:34:05.277Z","repository":{"id":74921063,"uuid":"359329018","full_name":"TimMikeladze/animal-crossing-api","owner":"TimMikeladze","description":"GraphQL API for Animal Crossing New Horizon items, villagers, fish, etc.","archived":false,"fork":false,"pushed_at":"2021-04-24T21:25:01.000Z","size":3001,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-27T01:51:11.470Z","etag":null,"topics":["animal-crossing","api","graphql"],"latest_commit_sha":null,"homepage":"https://animal-crossing-api.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TimMikeladze.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-19T04:32:47.000Z","updated_at":"2024-12-18T23:35:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"aaff1801-8c10-4b99-858a-d56c3700d8f0","html_url":"https://github.com/TimMikeladze/animal-crossing-api","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"d7020a2b778c138cc666ae85bb23335a77c7eac4"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TimMikeladze/animal-crossing-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimMikeladze%2Fanimal-crossing-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimMikeladze%2Fanimal-crossing-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimMikeladze%2Fanimal-crossing-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimMikeladze%2Fanimal-crossing-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TimMikeladze","download_url":"https://codeload.github.com/TimMikeladze/animal-crossing-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimMikeladze%2Fanimal-crossing-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32559716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T03:21:47.309Z","status":"ssl_error","status_checked_at":"2026-05-03T03:21:43.884Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animal-crossing","api","graphql"],"created_at":"2024-10-05T20:23:05.362Z","updated_at":"2026-05-03T05:34:05.260Z","avatar_url":"https://github.com/TimMikeladze.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Animal Crossing API\n\nA GraphQL API for Animal Crossing New Horizon items, villagers, fish, etc.\n\nhttps://animal-crossing-api.vercel.app - Demo \u0026 Documentation\n\nhttps://animal-crossing-api.vercel.app/api/graphql - GraphQL endpoint.\n\n## Query examples\n\n**Top 5 hardest fish to catch**\n\n```graphql\n{\n    fishes(first: 5, filter: { catchDifficulty: { equalTo: \"Very Hard\" } }) {\n        id\n        name\n        description\n        catchphrase\n        color1\n        color2\n        spawnRates\n        whereHow\n        catchDifficulty\n    }\n}\n\n```\n\n**Villagers with birthdays in June or July sorted by birthday and name**\n\n```graphql\n{\n    villagersWithSummerBirthdays: villagers(\n        filter: {\n            or: [{ birthday: { like: \"6/%\" } }, { birthday: { like: \"7/%\" } }]\n        }\n        orderBy: [BIRTHDAY_ASC, NAME_ASC]\n    ) {\n        id\n        birthday\n        name\n        favoriteSong\n        hobby\n        personality\n        species\n        subtype\n    }\n}\n\n```\n\n**All seasons and events**\n\n```graphql\n{\n    seasonsAndEvents {\n        id\n        name\n        unlockDate\n        unlockMethod\n        datesNorthernHemisphere\n        year\n        displayName\n        datesSouthernHemisphere\n        internalLabel\n        nodeId\n        type\n        uniqueEntryId\n        versionLastUpdated\n        versionAdded\n    }\n}\n\n```\n\n## How it works\n\nThe data is provided by the community made [Data Spreadsheet for Animal Crossing New Horizons](https://docs.google.com/spreadsheets/d/13d_LAJPlxMa_DubPTuirkIV4DERBMXbrWQsmSh8ReK4/).\n\nThe XLSX spreadsheet is fetched and converted into JSON. After some data massaging the schema for each sheet is determined and relevant\nPostgres tables are created and populated with data.\n\nUsing PostGraphile a read only GraphQL API is automatically generated by introspecting the Postgres database structure.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimmikeladze%2Fanimal-crossing-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimmikeladze%2Fanimal-crossing-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimmikeladze%2Fanimal-crossing-api/lists"}