action collegefootballdata_get_recruiting_players { label: "Player recruiting ratings and rankings" description: "Get player recruiting rankings and data. Requires either a year or team to be specified." provider: collegefootballdata method: GET path: "/recruiting/players" encoding: json input: { type: "object" properties: { classification: { type: "string" } position: { type: "string" } state: { type: "string" } team: { type: "string" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { athleteId: { type: "integer" } city: { type: "string" } committedTo: { type: "string" } country: { type: "string" } height: { type: "number" } hometownInfo: { type: "object" properties: { countyFips: { type: "string" } latitude: { type: "number" } longitude: { type: "number" } } } id: { type: "integer" } name: { type: "string" } position: { type: "string" } ranking: { type: "integer" } rating: { type: "number" } recruitType: { type: "string" } school: { type: "string" } stars: { type: "integer" } stateProvince: { type: "string" } weight: { type: "integer" } year: { type: "integer" } } } } }