ProZ.com global directory of translation services
The translation workplace
Ideas

GET: /freelancer/:uuid

Get a single freelancer by UUID.

Authorization scopes

Only publicly visible profile information is returned by default. Fields that are not visible will either be unset or null.

Request the profile.read scope to get all profile information for the authenticated user (even that which is not publicly visible).

If you only interested in private contact data you can also use user.email and user.name scopes instead of profile.read.

See scopes in the authentication guide for information about how to request authorization scopes.

Parameters

  • uuid: An account uuid. Use the special value me to get data for the currently authenticated user (if any).

Example request

curl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" https://api.proz.com/v2/freelancer/me

Response

A JSON object with the following properties:

  • success: A flag indicating whether the request was successful.
  • meta: Metadata about the request, if any.
  • data: The requested freelancer.
{
  "success": 1,
  "meta": null,
  "data":   {
    "uuid": "d911bda5-fd9f-4bc1-845a-b5012a8812f2",
    "site_name": "Marcus Tullius Cicero",
    "account_type": "1",
    "profile_url": "http://www.proz.com/profile/999999",
    "image_url": "http://www.proz.com/profile_resources/999999_a62da8ab3807e2520ac67872dd1b7ac5.jpg",
    "contact_info": {
      "email": "[email protected]",
      "email_verified": true,
      "first_name": "Marcus",
      "middle_name": "Tullius",
      "last_name": "Cicero",
      "company_name": "Roman Senate",
      "phone": "+39 123 4567890",
      "mobile": "+1234567890",
      "country_code": "it",
      "timezone": "Europe/Rome",
      "location": {
        "lat": -33.8687,
        "lng": 151.194
      },
      "address": {
        "street_line_1": "Piazza del Colosseo, 1",
        "street_line_2": null,
        "street_line_3": null,
        "city": "Rome",
        "region": "Lazio",
        "postal": "00184",
        "country_code": "it"
      },
      "skype": "tully",
      "twitter": "tully",
      "website": "http://www.example.com/tully"
    },
    "proz_membership": {
      "status": "current",
      "expiration_date": "2018-10-14",
      "expired_date": null,
      "certified_pro_network_status": "current",
      "plus_package": false
    },
    "skills": {
      "language_pairs": [
        {
          "pair_code": "grc_lat",
          "pair_name": "Greek (Ancient) to Latin",
          "services": [
            {
              "service_id": 1,
              "service_name": "Translation"
            },
            {
              "service_id": 2,
              "service_name": "Checking/editing"
            },
            {
              "service_id": 6,
              "service_name": "Summarization"
            }
          ]
        },
        {
          "pair_code": "lat_grc",
          "pair_name": "Latin to Greek (Ancient)",
          "services": [
            {
              "service_id": 1,
              "service_name": "Translation"
            },
            {
              "service_id": 2,
              "service_name": "Checking/editing"
            },
            {
              "service_id": 6,
              "service_name": "Summarization"
            }
          ]
        }
      ],
      "general_services": [
        {
          "gen_service_id": 1,
          "gen_service_name": "Translation"
        },
        {
          "gen_service_id": 3,
          "gen_service_name": "Editing/proofreading"
        }
      ],
      "general_disciplines": [
        {
          "disc_gen_id": 2,
          "disc_gen_name": "Art/Literary"
        },
        {
          "disc_gen_id": 4,
          "disc_gen_name": "Law/Patents"
        }
      ],
      "specific_disciplines": [
        {
          "disc_spec_id": 33,
          "disc_spec_name": "Education / Pedagogy",
          "expertise_level": "specialty"
        },
        {
          "disc_spec_id": 62,
          "disc_spec_name": "Government / Politics",
          "expertise_level": "specialty"
        },
        {
          "disc_spec_id": 57,
          "disc_spec_name": "General / Conversation / Greetings / Letters",
          "expertise_level": "working"
        },
        {
          "disc_spec_id": 77,
          "disc_spec_name": "Law (general)",
          "expertise_level": "working"
        },
        {
          "disc_spec_id": 65,
          "disc_spec_name": "History",
          "expertise_level": "working"
        }
      ]
    },
    "qualifications": {
      "cv_url": "http://www.proz.com/profile_resources/999999_r560531971928d.pdf",
      "native_language": [
        "lat"
      ],
      "cpn_certifications": [
        {
          "pair_code": "grc_lat",
          "certificate_url": "http://www.proz.com/certificates/pro/pro_certificate_999999.jpg"
        }
      ],
      "credentials": [
        {
          "pair_code": "grc_lat",
          "authority": "Some Translator Association",
          "verified": true,
          "certificate_url": "http://www.example.com/certificate/987782348763459084"
        }
      ]
    },
    "other": {
      "software": [
        {
          "software_id": 1,
          "software_name": "SDL TRADOS"
        },
        {
          "software_id": 2,
          "software_name": "DejaVu"
        }
      ],
      "positive_wwas": 6,
      "kudoz_summary": {
        "points_pro": 2,
        "questions_asked_pro": 21,
        "questions_answered_pro": 6
      },
      "availability_today": 100
    }
  }
}