person_by_id: get: summary: Get person by ID description: | Returns information about a person with the specified ID, related to the cryptocurrency market. Using this endpoint you can get a description of the person, social media links, number of teams she or he is involved in and the positions in those teams. **Available on the following API plans:** - Free - Starter - Pro - Business - Enterprise **Update interval:** Every 1 hour. operationId: "getPeopleById" parameters: - $ref: "../parameters/people.yml#/person_id" tags: - People x-codeSamples: - lang: 'cURL' label: 'CLI' source: | curl --request GET \ --url 'https://api.coinpaprika.com/v1/people/vitalik-buterin' responses: 200: description: "successful operation" content: application/json: schema: $ref: "../schemas/people.yml#/person_by_id" 404: description: "not found" content: application/json: schema: $ref: "../schemas/errors.yml#/idNotFoundError" 429: description: "too many requests" content: application/json: schema: $ref: "../schemas/errors.yml#/tooManyRequestsError"