### Example JSON Response: Single FRC Team Colors Source: https://github.com/jonahsnider/frc-colors.com/blob/main/README.md A sample JSON response demonstrating the structure for a single FRC team's color data, including primary and secondary hex values and verification status. ```json { "teamNumber": 581, "colors": { "primaryHex": "#591616", "secondaryHex": "#e86d38", "verified": true } } ``` -------------------------------- ### Example JSON Response: Multiple FRC Teams Colors Source: https://github.com/jonahsnider/frc-colors.com/blob/main/README.md A sample JSON response demonstrating the structure for multiple FRC teams' color data, showing various scenarios including verified, unverified, and null color data. ```json { "teams": { "581": { "teamNumber": 581, "colors": { "primaryHex": "#591616", "secondaryHex": "#e86d38", "verified": true } }, "751": { "teamNumber": 751, "colors": null }, "9408": { "teamNumber": 9408, "colors": { "primaryHex": "#1d2e3b", "secondaryHex": "#ffffff", "verified": false } } } } ``` -------------------------------- ### API Endpoint: Get Colors for All FRC Teams Source: https://github.com/jonahsnider/frc-colors.com/blob/main/README.md Retrieves the primary and secondary colors for all FRC teams stored in the database. This endpoint can return a large dataset. The response format is identical to the single team endpoint. ```APIDOC GET /v1/team?all ``` -------------------------------- ### API Endpoint: Get Colors for a Single FRC Team Source: https://github.com/jonahsnider/frc-colors.com/blob/main/README.md Retrieves the primary and secondary colors for a specific FRC team by its team number. The response includes hex codes and a verification status. ```APIDOC GET /v1/team/:teamNumber ``` -------------------------------- ### API Endpoint: Get Colors for Teams at an FRC Event Source: https://github.com/jonahsnider/frc-colors.com/blob/main/README.md Retrieves the primary and secondary colors for all FRC teams associated with a specific event code. The response format is identical to the single team endpoint. ```APIDOC GET /v1/event/:eventCode ``` -------------------------------- ### API Endpoint: Get Colors for Multiple FRC Teams Source: https://github.com/jonahsnider/frc-colors.com/blob/main/README.md Retrieves the primary and secondary colors for several FRC teams by providing their team numbers as query parameters. The response is an object mapping team numbers to their color data. ```APIDOC GET /v1/team?team=581&team=751&team=9408 ``` -------------------------------- ### FRC Colors API Base URL Source: https://github.com/jonahsnider/frc-colors.com/blob/main/README.md The root URL for accessing the FRC Colors API endpoints. ```APIDOC https://api.frc-colors.com ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.